Last active
March 23, 2018 15:01
-
-
Save amostajo/1efb40e4dbbbec9a8207da96a6188ef2 to your computer and use it in GitHub Desktop.
Enqueue Lightbox2 in Post Gallery Plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @hook post_gallery_enqueue | |
*/ | |
function enqueue_lightbox() { | |
wp_enqueue_style( | |
'lightbox', | |
'https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.min.css', | |
[], | |
'2.10.0' | |
); | |
wp_enqueue_script( | |
'lightbox', | |
'https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/js/lightbox.min.js', | |
[ 'jquery' ], | |
'2.10.0', | |
true | |
); | |
} | |
add_action( 'post_gallery_enqueue', 'enqueue_lightbox' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment