This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Prints all metaboxes with the above context | |
* above the editor | |
*/ | |
function themeplugin_prefix_meta_box_above() { | |
global $post; | |
echo '<div id="postbox-container-3" class="postbox-container">'; | |
do_meta_boxes( get_current_screen(), 'above', $post ); | |
echo '</div>'; |