Fires after meta boxes have been added.
Description
Fires once for each of the default meta box contexts: normal, advanced, and side.
Parameters
$post_type
string- Post type of the post on Edit Post screen,
'link'
on Edit Link screen,'dashboard'
on Dashboard screen. $context
string- Meta box context. Possible values include
'normal'
,'advanced'
,'side'
. $post
WP_Post|object|string- Post object on Edit Post screen, link object on Edit Link screen, an empty string on Dashboard screen.
Source
do_action( 'do_meta_boxes', $post_type, 'normal', $post );
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.