Created
March 16, 2012 16:12
-
-
Save miklb/2050780 to your computer and use it in GitHub Desktop.
dynamic sidebar for home page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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