基本設定はfull widhにしたいけど、トップだけはサイドバーつきがいい場合。
function.phpに以下のコードを追加
// Force layout on homepage
add_filter('genesis_pre_get_option_site_layout', 'special_home_layout');
function special_home_layout($opt) {
if ( is_home() )
$opt = 'content-sidebar';
$opt = 'full-width-content';
$opt = 'sidebar-content-sidebar';
return $opt;
}
もちろんその他の組み合わせも可
$opt = 'content-sidebar';
$opt = 'full-width-content';
$opt = 'sidebar-content-sidebar';