Skip to content

Instantly share code, notes, and snippets.

@syrxw
Created June 6, 2015 14:54
Show Gist options
  • Save syrxw/1ed0fc6b53d7c2412b1a to your computer and use it in GitHub Desktop.
Save syrxw/1ed0fc6b53d7c2412b1a to your computer and use it in GitHub Desktop.
<?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