Created
June 6, 2015 14:54
-
-
Save syrxw/1ed0fc6b53d7c2412b1a to your computer and use it in GitHub Desktop.
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 | |
function my_scripts() { | |
wp_enqueue_script( | |
'angularjs', | |
get_stylesheet_directory_uri() . '/bower_components/angular/angular.min.js' | |
); | |
wp_enqueue_script( | |
'angularjs-route', | |
get_stylesheet_directory_uri() . '/bower_components/angular-route/angular-route.min.js' | |
); | |
} | |
add_action( 'wp_enqueue_scripts', 'my_scripts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment