Skip to content

Instantly share code, notes, and snippets.

@jaygidwitz
Created April 18, 2015 01:56
Show Gist options
  • Save jaygidwitz/8d9262aeb0a23ff0c4a2 to your computer and use it in GitHub Desktop.
Save jaygidwitz/8d9262aeb0a23ff0c4a2 to your computer and use it in GitHub Desktop.
Force content layout on single posts and blog page.
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