Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created January 13, 2013 18:36
Show Gist options
  • Select an option

  • Save tomharrigan/4525589 to your computer and use it in GitHub Desktop.

Select an option

Save tomharrigan/4525589 to your computer and use it in GitHub Desktop.
Replace default Function slider with WooSlider
function woo_featured_slider_loader () {
$settings = woo_get_dynamic_values( array( 'featured' => 'true' ) );
if ( (is_home() || is_front_page()) && ( $settings['featured'] == 'true' ) ) {
//get_template_part( 'includes/featured', 'slider' );
wooslider(array( 'slider_type' => 'slides', 'smoothheight' => 'true' ) );
}
} // End woo_featured_slider_loader()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment