Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Created May 21, 2013 15:02
Show Gist options
  • Save JiveDig/5620501 to your computer and use it in GitHub Desktop.
Save JiveDig/5620501 to your computer and use it in GitHub Desktop.
// Remove default sidebar text
remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
add_action( 'genesis_sidebar', 'beatminded_do_default_sidebar' );
/**
* Echo primary sidebar default content.
*/
function beatminded_do_default_sidebar() {
if ( ! dynamic_sidebar( 'sidebar' ) ) {
echo '';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment