Last active
May 16, 2024 15:07
-
-
Save braddalton/2ef710ab5e4934be38776553dd84d70d to your computer and use it in GitHub Desktop.
Widget Slider PHP
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' => 'slider', | |
'name' => __( 'Slider', 'agentpress' ), | |
'description' => __( 'This is the slider widget area.', 'agentpress' ), | |
) ); | |
add_action( 'genesis_before_content_sidebar_wrap', 'slider_before_content', 5 ); | |
function slider_before_content() { | |
if ( is_front_page() ) | |
genesis_widget_area( 'slider', array( | |
'before' => '<div class="widget-area">', | |
'after' => '</div>', | |
) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment