Skip to content

Instantly share code, notes, and snippets.

@anandkumar
Created August 21, 2013 12:30
Show Gist options
  • Save anandkumar/6293860 to your computer and use it in GitHub Desktop.
Save anandkumar/6293860 to your computer and use it in GitHub Desktop.
Force full width layout on bbPress forums
/** Force full width layout on bbPress forums */
add_filter( 'genesis_pre_get_option_site_layout', 'child_do_layout' );
function child_do_layout( $opt ) {
if ( is_bbpress() ) {
$opt = 'full-width-content'; // 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