Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 14, 2015 12:18
Show Gist options
  • Save braddalton/5085430 to your computer and use it in GitHub Desktop.
Save braddalton/5085430 to your computer and use it in GitHub Desktop.
Content Sidebar Layout Genesis Page
add_filter( 'genesis_pre_get_option_site_layout', 'child_do_layout' );
function child_do_layout( $opt ) {
$opt = 'content-sidebar';
return $opt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment