0

我一直在寻找所有地方,但无法找到解决方案。我正在使用 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 强制一个全宽页面,但是它没有用。

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

4

1 回答 1

1

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

add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
于 2013-01-14T15:16:36.783 回答