dbx_post_advanced
Fires in the middle of built-in meta box registration.
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_advanced', $post );
- The following example is for adding a hook callback.
- // define the dbx_post_advanced callback
- function action_dbx_post_advanced( $post ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'dbx_post_advanced', 'action_dbx_post_advanced', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'dbx_post_advanced', 'action_dbx_post_advanced', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/edit-form-advanced.php
- do_action( 'dbx_post_advanced', $post );