Created
March 15, 2013 01:00
-
-
Save braddalton/5166697 to your computer and use it in GitHub Desktop.
Paste this code at the end of the Prose child themes init.php file.
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
genesis_register_sidebar( array( | |
'id' => 'home-slider', | |
'name' => __( 'Home Slider', 'prose' ), | |
'description' => __( 'This is the slider widget area for your homepage.', 'prose' ), | |
) ); | |
add_action( 'genesis_before_content_sidebar_wrap', 'child_before_content_sidebar_wrap'); | |
function child_before_content_sidebar_wrap'() { | |
if ( is_home() && is_active_sidebar( 'home-slider' ) ) { | |
echo '<div id="home-slider">'; | |
dynamic_sidebar( 'home-slider' ); | |
echo '</div><!-- end #home-slider -->'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment