dbx_post_sidebar
Fires after all meta box sections have been output, before the closing #post-body div.
Description
Parameters (1)
- 0. $post (WP_Post)
- Post object.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'dbx_post_sidebar', $post );
- The following example is for adding a hook callback.
- // define the dbx_post_sidebar callback
- function action_dbx_post_sidebar( $post ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'dbx_post_sidebar', 'action_dbx_post_sidebar', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'dbx_post_sidebar', 'action_dbx_post_sidebar', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/edit-form-advanced.php
- do_action( 'dbx_post_sidebar', $post );