您需要添加一个自定义元框,并将代码放入相应的回调中。
听起来您已经设置了自定义帖子类型,所以只需确保您有最后一行来注册元框回调:
register_post_type( \'wpse_cpt\',
array(
\'labels\' => array(\'all\',\'the\',\'labels\'),
\'public\' => true,
\'supports\' => array( \'title\', \'editor\', \'thumbnail\', \'comments\' ),
\'capability_type\' => \'post\',
\'rewrite\' => array("slug" => "wpse-cpt"),
\'menu_position\' => 5,
\'register_meta_box_cb\' => \'add_wpse_metabox\'// <- ADD THIS LINE
)
);
}
然后添加元框
function add_wpse_metabox() {
add_meta_box(\'wpse_form_limit\', \'Form Limits\', \'wpse_form_limit\', \'wpse_cpt\', \'side\', \'default\');
}
然后添加包含元框内容的回调:
function wpse_form_limit() {
if ($limit_reached) :
echo "Limit reached";
else :
echo "There\'s room for more!"
endif;
}
您的代码看起来会有所不同(复制和粘贴此代码不会太远),但这就是您在管理中获取自定义内容的方式。