add_meta_boxes, $post_type, $post

add_meta_boxes, $post_type, $post

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: 7.0.3

do_action('add_meta_boxes, $post_type, $post') is found 1 times:

  • /wp-admin/includes/meta-boxes.php line 1692
    	 *                                               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).