Guest User

Untitled

a guest
Jun 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_action( 'wp_enqueue_scripts', 'custom_scripts' );
  2. function custom_scripts() {
  3. //JS
  4. wp_register_script('custom-js', get_stylesheet_directory_uri() . "/js/custom.js", array('jquery'), false, false);
  5. wp_enqueue_script('custom-js');
  6. }
  7.  
  8. (function($) {
  9.  
  10. // $ Works! You can test it with next line if you like
  11. // console.log($);
  12.  
  13. })( jQuery );
Add Comment
Please, Sign In to add comment