Skip to content

Instantly share code, notes, and snippets.

@generatepress
Created April 21, 2015 17:40
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 generatepress/76ade6c6b76e7a608262 to your computer and use it in GitHub Desktop.
Save generatepress/76ade6c6b76e7a608262 to your computer and use it in GitHub Desktop.
Set a sidebar on the blog homepage only
add_filter( 'generate_sidebar_layout','generate_custom_blog_sidebar_layout' );
function generate_custom_blog_sidebar_layout( $layout )
{
// If we are on the blog homepage, set the sidebar
if ( is_home() )
return 'right-sidebar';
// Or else, set the regular layout
return $layout;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment