Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/5846973 to your computer and use it in GitHub Desktop.
Save braddalton/5846973 to your computer and use it in GitHub Desktop.
add_filter( 'genesis_pre_get_option_site_layout', 'wpsites_change_layout_genesis');
function wpsites_change_layout_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