Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. //* do not copy php
  3.  
  4. // Enqueue Scripts/Styles for our Lightbox
  5. function child_theme_add_lightbox() {
  6. wp_enqueue_script( 'fancybox', get_bloginfo( 'stylesheet_directory' ) . '/js/jquery.fancybox.pack.js', array( 'jquery' ), false, true );
  7. wp_enqueue_script( 'lightbox', get_bloginfo( 'stylesheet_directory' ) . '/js/lightbox.js', array( 'fancybox' ), false, true );
  8. wp_enqueue_style( 'lightbox-style', get_bloginfo( 'stylesheet_directory' ) . '/css/jquery.fancybox.css' );
  9. }
  10.  
  11. add_action( 'wp_enqueue_scripts', 'child_theme_add_lightbox' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement