/**
* Fires after meta boxes have been added.
*
* Fires once for each of the default meta box contexts: normal, advanced, and side.
*
* @since 3.0.0
*
* @param string $post_type Post type of the post.
* @param string $context string Meta box context.
* @param WP_Post $post Post object.
*/
do_action( 'do_meta_boxes', $post_type, 'normal', $post );
I found these in wp-admin/edit-form-advanced.php
and I can’t figure out purpose of these actions ( checked for add_action( ‘do_meta_boxes’ … ) there is no such actions ).
Documentation says
Fires after meta boxes have been added.
Fires once for each of the default meta box contexts: normal,
advanced, and side.
But what’s purpose is for these action? When should I use these actions?
NOTE: it’s not the same as do_meta_boxes()
function and has nothing common with it!