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

Wordpress Genesis子主题-仅删除主页上的主侧栏,wordpress,Wordpress,我已经到处找了,找不到解决办法。我使用的是Genesis儿童主题“新闻”,对于主页,我不需要主要的侧边栏,因为我会在那里有一个图像滑块。我发现这样的代码: /** 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

我已经到处找了,找不到解决办法。我使用的是Genesis儿童主题“新闻”,对于主页,我不需要主要的侧边栏,因为我会在那里有一个图像滑块。我发现这样的代码:

/** 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;
}
并将其添加到functions页面,因为我想强制home.php使用全宽页面,但它不起作用


如果有人在这方面取得了成功,我们将不胜感激

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

add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );