Advertisement
srikat

functions.php

Apr 21st, 2014
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. //* Enqueue scripts for BigVideo
  2. add_action( 'wp_enqueue_scripts', 'sk_enqueue_scripts' );
  3. function sk_enqueue_scripts() {
  4.  
  5.     if ( ! is_home() ) {
  6.         return;
  7.     }
  8.  
  9.     wp_enqueue_script( 'imagesloaded', get_bloginfo( 'stylesheet_directory' ) . '/js/imagesloaded.pkgd.min.js', array( 'jquery' ), '', true );
  10.     wp_enqueue_script( 'jquery-ui-slider' );
  11.  
  12.     wp_enqueue_script( 'bigvideo', get_bloginfo( 'stylesheet_directory' ) . '/js/bigvideo.js', array( 'jquery' ), '', true );
  13.     wp_enqueue_script( 'bigvideo-init',  get_bloginfo( 'stylesheet_directory' ) . '/js/bigvideo-init.js', array( 'bigvideo' ), '1.0.0', true );
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement