Last active
December 14, 2015 12:18
-
-
Save braddalton/5085406 to your computer and use it in GitHub Desktop.
Full Width Page Layout Genesis Theme Framework
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
add_filter( 'genesis_pre_get_option_site_layout', 'child_do_layout' ); | |
function child_do_layout( $opt ) { | |
$opt = 'full-width-content'; | |
return $opt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment