Advertisement
phpface

Untitled

Dec 27th, 2015
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. if( ! function_exists( 'themename_wp_enqueue_scripts' ) ){
  2.     function themename_wp_enqueue_scripts() {
  3.         /**
  4.          * Do not add wp_enqueue_script( 'jquery' );
  5.          * If the script requires jquery as below
  6.          */
  7.         wp_enqueue_script( 'themename-my-script', get_template_directory_uri() . '/assets/js/my-script.js', array( 'jquery' ), '1.0', true );
  8.        
  9.     }
  10.     add_action( 'wp_enqueue_scripts' , 'themename_wp_enqueue_scripts' );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement