Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. function wpdocs_template_scripts() {
  2. wp_enqueue_style( 'style', get_stylesheet_uri() );
  3. wp_enqueue_script('modernizer', get_template_directory_uri() .'/js/vendor/modernizr-2.8.3.min.js', null, null, false);
  4. wp_enqueue_script('bootstrap', get_template_directory_uri() .'/js/bootstrap.min.js', array('jquery'), null, true);
  5. wp_enqueue_script('main', get_template_directory_uri() .'/js/main.js', array('jquery'), null, true);
  6. }
  7. add_action( 'wp_enqueue_scripts', 'wpdocs_template_scripts' );
  8.  
  9. (function($) {
  10. // Your code inside here;
  11. });
  12.  
  13. $ = jQuery; // This at the top of the file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement