Created
September 5, 2012 22:49
-
-
Save rachelbaker/3646794 to your computer and use it in GitHub Desktop.
enqueue Flexslider script
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
| function YU_scripts() { | |
| wp_enqueue_script( 'jquery'); | |
| wp_enqueue_script( 'jquery-ui-tabs', array('jquery') ); | |
| wp_enqueue_script( 'flexslider', get_template_directory_uri() . '/js/jquery.flexslider.js', array('jquery') ); | |
| wp_enqueue_script( 'flexslider-init', get_template_directory_uri() . '/js/jquery.flexslider-init.js', array('jquery', 'flexslider') ); | |
| } | |
| add_action( 'wp_enqueue_scripts', 'YU_scripts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment