Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 14, 2015 12:18
Show Gist options
  • Save braddalton/5085201 to your computer and use it in GitHub Desktop.
Save braddalton/5085201 to your computer and use it in GitHub Desktop.
This code changes your page layout and can be modified using any of the layout options included in Genesis
add_filter( 'genesis_pre_get_option_site_layout', 'child_do_layout' );
function child_do_layout( $opt ) {
$opt = 'full-width-content'; // Change this to any Genesis layout
return $opt;
}
/** Other options include:
* content-sidebar
* sidebar-content
* content-sidebar-sidebar
* sidebar-sidebar-content
* sidebar-content-sidebar
* full-width-content
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment