submitpost_box
Fires before meta boxes with 'side' context are output for all post types other than 'page'.
Description
The submitpost box is a meta box with side context, so this hook fires just before it is output.
Parameters (1)
- 0. $post (WP_Post)
- Post object.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'submitpost_box', $post );
- The following example is for adding a hook callback.
- // define the submitpost_box callback
- function action_submitpost_box( $post ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'submitpost_box', 'action_submitpost_box', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'submitpost_box', 'action_submitpost_box', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/edit-form-advanced.php
- do_action( 'submitpost_box', $post );