Skip to content

Instantly share code, notes, and snippets.

@amostajo
Last active March 23, 2018 15:01
Show Gist options
  • Save amostajo/1efb40e4dbbbec9a8207da96a6188ef2 to your computer and use it in GitHub Desktop.
Save amostajo/1efb40e4dbbbec9a8207da96a6188ef2 to your computer and use it in GitHub Desktop.
Enqueue Lightbox2 in Post Gallery Plugin
<?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