Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created August 14, 2014 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1d73288a5b6cf94b27b8 to your computer and use it in GitHub Desktop.
Save billerickson/1d73288a5b6cf94b27b8 to your computer and use it in GitHub Desktop.
<?php
//* Rename Sidebars
unregister_sidebar( 'sidebar' );
unregister_sidebar( 'header-right' );
genesis_register_sidebar( array( 'id' => 'header-right', 'name' => 'Left Sidebar' ) );
genesis_register_sidebar( array( 'id' => 'sidebar', 'name' => 'Right Sidebar' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment