Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cobaltapps/b6aa82b2d1a9cc46813b6921463c2cfa to your computer and use it in GitHub Desktop.
Save cobaltapps/b6aa82b2d1a9cc46813b6921463c2cfa to your computer and use it in GitHub Desktop.
Force full-width-content layout on single pages and posts, but not "blog" page.
add_action( 'get_header', 'custom_child_full_width_singular_layout');
// Force full-width-content layout on single pages and posts, but not "blog" page.
function custom_child_full_width_singular_layout() {
if ( ( is_page() || is_single() ) && ! is_page( 'blog' ) )
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment