display all registered meta boxes
All the meta boxes are kept in a multidimensional array, called $wp_meta_boxes. It will display all of the meta boxes registered for a specific screen and a specific context. Use the following code: function get_meta_boxes( $screen = null, $context=”advanced” ) { global $wp_meta_boxes; if ( empty( $screen ) ) $screen = get_current_screen(); elseif ( is_string( … Read more