看看config.php
:
function roots_display_sidebar() {
$sidebar_config = new Roots_Sidebar(
/**
* Conditional tag checks (http://codex.wordpress.org/Conditional_Tags)
* Any of these conditional tags that return true won\'t show the sidebar
*/
array(
\'is_404\',
\'is_front_page\'
),
/**
* Page template checks (via is_page_template())
* Any of these page templates that return true won\'t show the sidebar
*/
array(
\'page-custom.php\'
)
);
return $sidebar_config->display;
}
因此,如果主页不是首页,则会显示侧边栏。可能有一种方法可以调整每个过滤器的这些设置,但您也可以将第一个数组更改为…
array(
\'is_404\',
\'is_front_page\',
\'is_home\'
),
…隐藏侧栏。