如何确定侧边栏是否为空?还是不活跃? 时间:2014-08-05 作者:HML 我用过is_sidebar_active(\'NameOfSidebar\'), 但它似乎不起作用。它始终返回false。我想有一个这样的条件if(\'sidebar is not active\'){ //must not display the section title. }else{ //display the sidebar here.. } 2 个回复 SO网友:Brad Dalton 尝试is_active_sidebarif ( is_active_sidebar(\'your-sidebar-i.d\')) 其中,your-sidebar-i.d等于注册侧栏时使用的ID。 SO网友:Christopher Lamm 您想使用not(!)在你的条件中。if (!is_active_sidebar(\'NameOfSidebar\')){ // Must not display the section title. } else { // Display the sidebar here. } 如果is\\u active\\u sidebar()返回false,则第一个条件将返回true。is\\u active\\u sidebar()如果侧栏没有保存活动的小部件,则返回false。 结束 文章导航