Skip to content

Instantly share code, notes, and snippets.

@miklb
Created March 16, 2012 16:12
Show Gist options
  • Save miklb/2050780 to your computer and use it in GitHub Desktop.
Save miklb/2050780 to your computer and use it in GitHub Desktop.
dynamic sidebar for home page
function kkf_home_sidebar() {
if ( is_home()) {
remove_action( 'genesis_after_content', 'genesis_get_sidebar' );
add_action( 'genesis_after_content', 'kkf_get_home_sidebar' );
}
}
function kkf_get_home_sidebar() {
get_sidebar( 'news' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment