Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save duroe5698/7a62709221691f3c79cc to your computer and use it in GitHub Desktop.
Save duroe5698/7a62709221691f3c79cc to your computer and use it in GitHub Desktop.
Remove Primary Sidebar and Replace with Custom Sidebar Genesis Framework Snippet
<?php
//* Insert into custom page template to remove primary sidebar and replace with your custom sidebar.
function md_do_sidebar() {
dynamic_sidebar( 'SIDEBAR ID' );
}
remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
add_action( 'genesis_sidebar', 'md_do_sidebar' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment