Fires after all built-in meta boxes have been added, contextually for the given post type.
Description
The dynamic portion of the hook name, $post_type, refers to the post type of the post, or the object type (comment, link). Possible hook names include: <ul> <li>add_meta_boxes_post</li> <li>add_meta_boxes_page</li> <li>add_meta_boxes_attachment</li> <li>add_meta_boxes_comment</li> <li>add_meta_boxes_link</li> </ul>
Parameters
$objectWP_Post|WP_Comment|object
The post, comment, or link object. Type varies depending on the hook name.
1707*1708* @since 3.0.01709*1710* @param WP_Post|WP_Comment|object$object The post, comment,or link object. Type varies depending on1711* the hook name.1712*/1713do_action("add_meta_boxes_{$post_type}",$post);17141715/**1716* Fires after meta boxes have been added.1717*1718* Fires once for each of the default meta box contexts: normal, advanced,and side.1719*
History
Introduced in 3.0.0. 2 changes between 6.7.7 and 7.1.0.