Forked from braddalton/Force full width layout on single posts Genesis
Last active
August 29, 2015 14:19
-
-
Save jaygidwitz/bf6d82d28dacd0995281 to your computer and use it in GitHub Desktop.
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 single posts only*/ | |
add_filter( 'genesis_pre_get_option_site_layout', 'full_width_layout_single_posts' ); | |
/** | |
* @author Brad Dalton | |
* @link http://wpsites.net/web-design/change-layout-genesis/ | |
*/ | |
function full_width_layout_single_posts( $opt ) { | |
if ( is_single() ) { | |
$opt = 'full-width-content'; | |
return $opt; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment