Skip to content

Instantly share code, notes, and snippets.

@amostajo
Created May 29, 2018 16:06
Show Gist options
  • Save amostajo/338d081b6c9a25b1eeb78a9bd4408f82 to your computer and use it in GitHub Desktop.
Save amostajo/338d081b6c9a25b1eeb78a9bd4408f82 to your computer and use it in GitHub Desktop.
Post Gallery: Enqueue custom lightbox
<?php
add_action( 'post_gallery_enqueue', function() {
// CSS
wp_enqueue_style(
'lightgallery', // Name / slug
get_stylesheet_directory_uri() . '/node_modules/lightgallery/dist/css/lightgallery.min.css', // File location
[], // Dependency
'1.6.11' // Version
);
// js
wp_enqueue_script(
'lightgallery', // Name / slug
get_stylesheet_directory_uri() . '/node_modules/lightgallery/dist/js/lightgallery-all.min.js', // File location
['jquery'], // Dependency
'1.6.11' // Version
);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment