Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 11, 2013 14:58
Show Gist options
  • Save billerickson/5134811 to your computer and use it in GitHub Desktop.
Save billerickson/5134811 to your computer and use it in GitHub Desktop.
<?php
/**
* Load a different sidebar
*
*/
function be_different_sidebar() {
// Remove current sidebar
remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
remove_action( 'genesis_sidebar', 'ss_do_sidebar' );
// Load my sidebar
dynamic_sidebar( 'different-sidebar' );
}
add_action( 'genesis_sidebar', 'be_different_sidebar', 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment