Created
August 21, 2013 12:30
-
-
Save anandkumar/6293860 to your computer and use it in GitHub Desktop.
Force full width layout on bbPress forums
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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