Skip to content

Instantly share code, notes, and snippets.

@callingmedic911
Last active December 19, 2015 03:38
Show Gist options
  • Save callingmedic911/5891108 to your computer and use it in GitHub Desktop.
Save callingmedic911/5891108 to your computer and use it in GitHub Desktop.
<?php //Don't include php start tag
//Remove sidebar from non-singular pages
add_filter( 'genesis_pre_get_option_site_layout', 'custom_fullwidth' );
function custom_fullwidth( $opt ) {
is ( !(is_singular() || is_admin()) ) { //is_admin to prevent setting Full Width on Genesis> Theme Setting everytime you visit.
$opt = 'full-width-content';
return $opt;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment