显示一个侧边栏否则不显示任何侧边栏

时间:2014-09-30 13:49:55

标签: php wordpress wordpress-plugin

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

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

1 个答案:

答案 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 ...   

 }