dbx_post_advanced action-hookWP 2.1.0

Deprecated from version 3.7.0. It is no longer supported and can be removed in future releases. See add_meta_boxes.

Fires in the middle of built-in meta box registration.

Usage

add_action( 'dbx_post_advanced', 'wp_kama_dbx_post_advanced_action', 10, 2 );

/**
 * Function for `dbx_post_advanced` action-hook.
 * 
 * @param WP_Post $post   Post object.
 * @param         $string 
 *
 * @return void
 */
function wp_kama_dbx_post_advanced_action( $post, $string ){

	// action...
}
$post(WP_Post)
Post object.
$string
-

Changelog

Since 2.1.0 Introduced.
Deprecated since 3.7.0 Use {@see 'add_meta_boxes'} instead.

Where the hook is called

register_and_do_post_meta_boxes()
dbx_post_advanced
wp-admin/includes/meta-boxes.php 1672
do_action_deprecated( 'dbx_post_advanced', array( $post ), '3.7.0', 'add_meta_boxes' );

Where the hook is used in WordPress

Usage not found.