如果将自定义字段(元数据)附加到特定的帖子、页面或自定义帖子类型,则可以在页面模板文件中执行以下操作:
实例example-template-file.php
<?php
$sidebar_id = \'my-custom-sidebar-id\';
$my_custom_meta_value = get_post_meta(get_the_ID(), \'my_custom_meta_key\', true);
if ( !empty($my_custom_meta_value) && is_active_sidebar($sidebar_id) ) {
dynamic_sidebar($sidebar_id);
}
?>
备注:
dynamic_sidebar,
is_active_sidebar