Created
May 2, 2018 17:55
-
-
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.
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_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