我只想在页面上添加一个侧边栏,否则不要显示任何侧边栏留空
**<?php get_sidebar("wp-forecast") ?>**
答案 0 :(得分:0)
您可以添加一个标志变量并将其设置为false:
$displayed_sidebar = false
然后将函数get_sidebar
的内容包装在检查displayed_sidebar
是否为假的条件中:
if (!$displayed_sidebar) {
$displayed_sidebar = true; // this prevents more than one sidebar to be displayed
// ... the rest of the code here ...
}