Skip to content

Instantly share code, notes, and snippets.

@vermasachin
Last active January 4, 2016 18:59
Show Gist options
  • Select an option

  • Save vermasachin/8664681 to your computer and use it in GitHub Desktop.

Select an option

Save vermasachin/8664681 to your computer and use it in GitHub Desktop.
add_action('get_header','bitdoz_custom_homepage_sidebar');
function bitdoz_custom_homepage_sidebar() {
if ( is_front_page() ) {
remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
add_action( 'genesis_sidebar', 'bitdoz_do_sidebar' );
}
}
function bitdoz_do_sidebar() {
genesis_widget_area( 'custom-homepage-sidebar' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment