Created
April 18, 2015 01:56
-
-
Save jaygidwitz/8d9262aeb0a23ff0c4a2 to your computer and use it in GitHub Desktop.
Force content layout on single posts and blog page.
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', 'change_layout_blog_genesis'); | |
function change_layout_blog_genesis( $opt ) { | |
if (is_single() || is_page_template( 'page_blog.php' ) ) { | |
$opt = 'content-sidebar'; | |
return $opt; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment