码星框架将metabox添加到特定页面
Code star framework add metabox to a specific page
我使用的是码星框架完整版。我已经将框架与主题整合在一起。 如何才能只为某些特定页面显示元框选项(例如主页和关于页面)?当前,元框选项显示所有页面。
创建 metabox 时,您应该在数组中传递“page_templates”值。例如,如果你想在主页上显示 metabox,你应该这样做:
$homePage = 'home-page';
CSF::createMetabox($homePage, array(
'title' => 'Homepage',
'post_type' => 'page',
'page_templates' => 'index.php', //filename goes here
'data_type' => 'serialize',
));
更多信息:http://codestarframework.com/documentation/#/configurations?id=metabox-option-framework
我使用的是码星框架完整版。我已经将框架与主题整合在一起。 如何才能只为某些特定页面显示元框选项(例如主页和关于页面)?当前,元框选项显示所有页面。
创建 metabox 时,您应该在数组中传递“page_templates”值。例如,如果你想在主页上显示 metabox,你应该这样做:
$homePage = 'home-page';
CSF::createMetabox($homePage, array(
'title' => 'Homepage',
'post_type' => 'page',
'page_templates' => 'index.php', //filename goes here
'data_type' => 'serialize',
));
更多信息:http://codestarframework.com/documentation/#/configurations?id=metabox-option-framework