Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Created May 9, 2013 21:33
Show Gist options
  • Save JiveDig/5550792 to your computer and use it in GitHub Desktop.
Save JiveDig/5550792 to your computer and use it in GitHub Desktop.
Add Genesis Simple Sidebar to a template. Good for archive.php, archive-custom-post-type.php, single.php, etc...
// Use 'Portfolio" sidebar - via Genesis Simple Sidebars plugin
add_action( 'get_header', 'thestiz_portfolio_sidebar_init', 20 );
function thestiz_code_sidebar_init() {
remove_action('genesis_sidebar', 'ss_do_sidebar');
add_action( 'genesis_sidebar', 'thestiz_do_portfolio_sidebar' );
}
function thestiz_do_portfolio_sidebar() {
dynamic_sidebar( 'portfolio' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment