显示一个侧边栏,否则不要';不要显示任何侧边栏


Show one sidebar else don't show any sidebar

我只想在页面上显示一个侧边栏,否则不显示任何侧边栏,保留空白

**<?php get_sidebar("wp-forecast") ?>** 

您可以添加一个标志变量并将其设置为false:

 $displayed_sidebar = false

然后将函数get_sidebar的内容包装在检查displayed_sidebar是否为false的条件中:

 if (!$displayed_sidebar) {
     $displayed_sidebar = true; // this prevents more than one sidebar to be displayed
     // ... the rest of the code here ...   
 }