add_meta_boxes_page action-hookWP 3.0.0

Fires after all built-in meta boxes have been added, contextually for the given post type.

This is one of the variants of the dynamic hook add_meta_boxes_(post_type)

Usage

add_action( 'add_meta_boxes_page', 'wp_kama_add_meta_boxes_page_action' );

/**
 * Function for `add_meta_boxes_page` action-hook.
 * 
 * @param WP_Post $post Post object.
 *
 * @return void
 */
function wp_kama_add_meta_boxes_page_action( $post ){

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

Changelog

Since 3.0.0 Introduced.

Where the hook is called

register_and_do_post_meta_boxes()
add_meta_boxes_page
wp-admin/includes/meta-boxes.php 1731
do_action( "add_meta_boxes_{$post_type}", $post );

Where the hook is used in WordPress

Usage not found.