体調不良のため長らくお休みしていました、過去をさかのぼって更新していきます。

GenesisフレームワークでHOMEのみカラムを変更

[PR] 記事内には広告が含まれています。

基本設定は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';