edit_form_after_editor action-hookWP 3.5.0

Fires after the content editor.

Usage

add_action( 'edit_form_after_editor', 'wp_kama_edit_form_after_editor_action' );

/**
 * Function for `edit_form_after_editor` action-hook.
 * 
 * @param WP_Post $post Post object.
 *
 * @return void
 */
function wp_kama_edit_form_after_editor_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_editor
wp-admin/edit-form-advanced.php 684
do_action( 'edit_form_after_editor', $post );

Where the hook is used in WordPress

wp-admin/includes/admin-filters.php 91
add_action( 'edit_form_after_editor', '_enable_content_editor_for_navigation_post_type' );