Skip to content

Instantly share code, notes, and snippets.

@j-gardner
Last active October 13, 2015 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-gardner/4122635 to your computer and use it in GitHub Desktop.
Save j-gardner/4122635 to your computer and use it in GitHub Desktop.
Add script registration filter
<?php // DO NOT include the opening php tag
add_filter( 'arconix_flexslider_reg', 'my_flexslider_args' );
function my_flexslider_args( $args ) {
$args['url'] = get_stylesheet_directory_uri() . '/jquery.flexslider-min.js';
$args['ver'] = '2.0';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment