Skip to content

Instantly share code, notes, and snippets.

@jdspiral
Last active August 29, 2015 14:16
Show Gist options
  • Save jdspiral/3d3df2944379b1c91da5 to your computer and use it in GitHub Desktop.
Save jdspiral/3d3df2944379b1c91da5 to your computer and use it in GitHub Desktop.
Add blog sidebar to blog (home.php), posts (single.php), categories, and tags
// Add blog sidebar to blog (home.php), posts (single.php), categories, and tags
add_action('genesis_before_sidebar_widget_area', 'jds_get_blog_sidebar');
function jds_get_blog_sidebar() {
if (is_home() || is_single() || is_category() || is_tag()) :
remove_action( 'genesis_sidebar', 'ss_do_sidebar' );
remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
dynamic_sidebar( 'blog' );
endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment