edit_form_after_editor
Fires after the content editor.
Description
Parameters (1)
- 0. $post (WP_Post)
- Post object.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'edit_form_after_editor', $post );
- The following example is for adding a hook callback.
- // define the edit_form_after_editor callback
- function action_edit_form_after_editor( $post ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'edit_form_after_editor', 'action_edit_form_after_editor', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'edit_form_after_editor', 'action_edit_form_after_editor', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/edit-form-advanced.php
- do_action( 'edit_form_after_editor', $post );