Created
July 29, 2015 17:52
-
-
Save mikeyarce/992f2d0939eb4174e307 to your computer and use it in GitHub Desktop.
Customize WooSliders Carousel Nav JS
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
<?php | |
add_filter( 'wooslider_modify_carousel_nav_javascript', 'custom_filter_func' ); | |
function custom_filter_func( $options ){ | |
$options['itemWidth'] = '100'; | |
$options['minItems'] = '4'; | |
$options['maxItems'] = '4'; | |
return $options; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment