Skip to content

Instantly share code, notes, and snippets.

@richtabor
Last active March 27, 2019 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richtabor/07003451036db1697b36667fda525b3a to your computer and use it in GitHub Desktop.
Save richtabor/07003451036db1697b36667fda525b3a to your computer and use it in GitHub Desktop.
<?php
blockgallery_frontend_scripts() {
if ( has_block( 'blockgallery/masonry' ) ) {
wp_enqueue_script(
'blockgallery-masonry',
plugins_url( 'dist/blockgallery-masonry.js', __FILE__ ),
array( 'jquery', 'masonry', 'imagesloaded' ),
filemtime( plugin_dir_path( __FILE__ ) . 'dist/blockgallery-masonry.js' )
);
}
}
add_action( 'wp_enqueue_scripts', 'blockgallery_frontend_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment