我正在使用以下代码在多站点安装中向主页添加另外三个特色图像:
if (class_exists(\'MultiPostThumbnails\')) {
new MultiPostThumbnails(
array(
\'label\' => \'Core Home Image 1\',
\'id\' => \'core-home-1\',
\'post_type\' => \'page\'
)
);
new MultiPostThumbnails(
array(
\'label\' => \'Core Home Image 2\',
\'id\' => \'core-home-2\',
\'post_type\' => \'page\'
)
);
new MultiPostThumbnails(
array(
\'label\' => \'Core Home Image 3\',
\'id\' => \'core-home-3\',
\'post_type\' => \'page\'
)
);
}
新的编辑页面小部件按其应有的方式显示和运行,但它们出现在所有编辑页面上。我如何强制WordPress只在使用特定模板的页面上显示它们,即核心首页模板(wp-content/themes/mytheme/templates/Core-Front-Page.php)?
提前感谢您的帮助。