Skip to content

Instantly share code, notes, and snippets.

@leepettijohn
Created October 18, 2016 11:12
Show Gist options
  • Select an option

  • Save leepettijohn/44c022d7c49d18cb02ccc7ddf37dd1d4 to your computer and use it in GitHub Desktop.

Select an option

Save leepettijohn/44c022d7c49d18cb02ccc7ddf37dd1d4 to your computer and use it in GitHub Desktop.
Force page layout (full width / content sidebar)
/** Force full width layout */
add_filter( 'genesis_pre_get_option_site_layout', 'child_do_layout' );
function child_do_layout( $opt ) {
if ( is_single() ) { // Modify the conditions to apply the layout to here
$opt = 'full-width-content'; // You can change this to any Genesis layout
return $opt;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment