我在谷歌上搜索了一段时间,在这里找到了以下链接:Can I limit this meta box to a particular page?
我试图实现的是将我创建的自定义元框添加到CPT帖子屏幕上(edit.php?post_type=custom
).
我尝试使用的是:
add_action("admin_init", "admin_init");
function admin_init() {
global $pagenow, $page;
if ( \'edit.php\' == $pagenow ) {
add_meta_box( $id, $title, $callback, $post_type, $context, $priority, $callback_args );
}
}
将此添加并保存到functions.php
, 页面变为空白。甚至可以将元框添加到edit.php
页码?
<小时>EDIT OP希望在此元框中添加“QuickPress”功能。从评论到答案的截图。