post_submitbox_start
Fires at the beginning of the publishing actions section of the Publish meta box.
Description
do_action( 'post_submitbox_start' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'post_submitbox_start' );
- The following example is for adding a hook callback.
- // define the post_submitbox_start callback
- function action_post_submitbox_start( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'post_submitbox_start', 'action_post_submitbox_start', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'post_submitbox_start', 'action_post_submitbox_start', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /class.GFPaystationFeedAdmin.php
- <?php do_action('post_submitbox_start'); ?>