Genesis子主题 - 仅删除主页上的主要侧边栏

时间:2013-01-14 15:11:59

标签: wordpress

我一直在寻找所有地方,我无法找到解决方案。我正在使用Genesis Child主题“新闻”,对于主页我不需要主侧边栏,因为我会在那里有一个图像滑块。我找到了这样的代码:

/** Force full width layout */
add_filter( 'genesis_pre_get_option_site_layout', 'child_do_layout' );
function child_do_layout( $opt ) {
$opt = 'full-width-content'; // You can change this to any Genesis layout below
return $opt;
}

并将其添加到函数页面,因为我想基本上强制home.php的全宽页面,但它没有用。

如果有人对此有所成功,我们将不胜感激。

1 个答案:

答案 0 :(得分:1)

没关系,我找到解决方案给任何好奇的人,到home.php文件添加:

add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );