我们添加了Custom Meta Box 在里面做我们的事。
有some hooks 那是not 元框,我们可以使用它将内容插入该管理页面:
add_action( \'edit_form_top\', function( $post )
{
echo \'<h1 style="color:red">edit_form_top</h1>\';
});
add_action( \'edit_form_after_title\', function( $post )
{
echo \'<h1 style="color:red">edit_form_after_title</h1>\';
});
add_action( \'edit_form_after_editor\', function( $post )
{
echo \'<h1 style="color:red">edit_form_after_editor</h1>\';
});
add_action( \'edit_page_form\', function( $post )
{
// edit_page_form is ONLY for pages, the other is for the rest of post types
echo \'<h1 style="color:red">edit_page_form/edit_form_advanced</h1>\';
});
add_action( \'dbx_post_sidebar\', function( $post )
{
echo \'<h1 style="color:red">dbx_post_sidebar</h1>\';
});