edit_form_after_title
Fires after the title field.
Usage
add_action( 'edit_form_after_title', 'wp_kama_edit_form_after_title_action' );
/**
* Function for `edit_form_after_title` action-hook.
*
* @param WP_Post $post Post object.
*
* @return void
*/
function wp_kama_edit_form_after_title_action( $post ){
// action...
}
- $post(WP_Post)
- Post object.
Changelog
| Since 3.5.0 | Introduced. |
Where the hook is called
In file: /wp-admin/edit-form-advanced.php
edit_form_after_title
wp-admin/edit-form-advanced.php 607
do_action( 'edit_form_after_title', $post );
wp-admin/includes/post.php 2561
do_action( 'edit_form_after_title', $post );
Where the hook is used in WordPress
wp-admin/edit-form-advanced.php 75
add_action( 'edit_form_after_title', '_wp_posts_page_notice' );
wp-admin/includes/admin-filters.php 89
add_action( 'edit_form_after_title', '_disable_content_editor_for_navigation_post_type' );
wp-admin/includes/meta-boxes.php 1565
add_action( 'edit_form_after_title', 'edit_form_image_editor' );