Created
May 29, 2018 16:06
-
-
Save amostajo/338d081b6c9a25b1eeb78a9bd4408f82 to your computer and use it in GitHub Desktop.
Post Gallery: Enqueue custom lightbox
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 | |
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