Skip to content

Instantly share code, notes, and snippets.

@amostajo
Created May 29, 2018 16:37
Show Gist options
  • Save amostajo/1e1d11f2037a57157dc006d295969422 to your computer and use it in GitHub Desktop.
Save amostajo/1e1d11f2037a57157dc006d295969422 to your computer and use it in GitHub Desktop.
Post Gallery: Enqueues everything.
<?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
);
wp_enqueue_script(
'lightbox-init', // Name / slug
get_stylesheet_directory_uri() . '/js/lightbox-init.js', // File location
['lightgallery'], // Dependency
'1.0.0' // Version
);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment