post_submitbox_misc_actions
Fires after the post time/date setting in the Publish meta box.
Description
Parameters (1)
- 0. $array (callback) =>
array( &$this, 'post_page_metabox' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'post_submitbox_misc_actions', $array );
- The following example is for adding a hook callback.
- // define the post_submitbox_misc_actions callback
- function action_post_submitbox_misc_actions( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'post_submitbox_misc_actions', 'action_post_submitbox_misc_actions', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'post_submitbox_misc_actions', 'action_post_submitbox_misc_actions', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /modules/publicize/ui.php
- add_action( 'post_submitbox_misc_actions', array( &$this, 'post_page_metabox' ) );
- /modules/subscriptions.php
- add_action( 'post_submitbox_misc_actions', array( $this, 'subscription_post_page_metabox' ) );