Advertisement
srikat

Untitled

Feb 1st, 2017
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. add_action( 'wp_enqueue_scripts', 'sk_enqueue_featherlight' );
  2. /**
  3. * Enqueue Featherlight
  4. */
  5. function sk_enqueue_featherlight() {
  6. wp_enqueue_style( 'featherlight-css', get_stylesheet_directory_uri() . '/css/featherlight.min.css' );
  7. wp_enqueue_style( 'featherlight-gallery-css', get_stylesheet_directory_uri() . '/css/featherlight.gallery.min.css' );
  8.  
  9. wp_enqueue_script( 'featherlight', get_stylesheet_directory_uri() . '/js/featherlight.min.js', array( 'jquery' ), '1.5.0', true );
  10. wp_enqueue_script( 'featherlight-gallery', get_stylesheet_directory_uri() . '/js/featherlight.gallery.min.js', array( 'jquery' ), '1.3.5', true );
  11. wp_enqueue_script( 'featherlight-init', get_stylesheet_directory_uri() . '/js/featherlight-init.js', array( 'featherlight', 'featherlight-gallery' ), '1.0.0', true );
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement