Skip to content

Instantly share code, notes, and snippets.

@srikat
Created June 5, 2015 00:22
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 srikat/30d01073eaf7ab0c3475 to your computer and use it in GitHub Desktop.
Save srikat/30d01073eaf7ab0c3475 to your computer and use it in GitHub Desktop.
How to remove Sidebar for Blog, Archives and Posts page in Genesis. https://sridharkatakam.com/how-to-remove-sidebar-for-blog-archives-and-posts-page-in-genesis/
// Apply Full Width Content layout to Posts page, Single Posts and Archives.
add_action( 'get_header', 'sk_set_full_layout' );
function sk_set_full_layout() {
if ( ! ( is_home() || is_singular( 'post' ) || is_archive() ) ) {
return;
}
// Force full width content
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