Fires after all built-in meta boxes have been added.
$object_typestring$objectWP_Post|WP_Comment|objectwp-admin/edit-form-comment.php:418file scopewp-admin/edit-link-form.php:37file scopewp-admin/includes/meta-boxes.php:1692register_and_do_post_meta_boxes() * * @param string $object_type The type of the current object that meta boxes were added to. * Can be 'post', 'page', custom post types, 'comment', or 'link'. * @param WP_Post|WP_Comment|object $object The post, comment, or link object. Type varies depending on * `$object_type`. */ do_action( 'add_meta_boxes', $post_type, $post ); /** * Fires after all built-in meta boxes have been added, contextually for the given post type. * * The dynamic portion of the hook name, `$post_type`, refers to the post type of the post, * or the object type (comment, link).Introduced in 3.0.0. 4 changes between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
$object_type added.verified against source$object added.verified against source$post_type removed.verified against source$post removed.verified against source