Advertisement
deliciousthemes

Untitled

Dec 16th, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. add_action('wp_enqueue_scripts','delicious_custom_scripts');
  2.  
  3. function delicious_custom_scripts() {
  4.    
  5.     if(is_page_template('template-carousel.php')) {
  6.         wp_enqueue_script('carousel', get_template_directory_uri() . '/js/jquery.carousel.js', array('jquery'), '0.2.8', false );
  7.         wp_enqueue_script('custom-carousel', get_template_directory_uri() . '/js/custom-carousel.js', array('jquery'), '1.0', false );     
  8.     }      
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement