Skip to content

Instantly share code, notes, and snippets.

@phoenixMag00
Last active August 29, 2015 14:07
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 phoenixMag00/6bb73570d92437ee7707 to your computer and use it in GitHub Desktop.
Save phoenixMag00/6bb73570d92437ee7707 to your computer and use it in GitHub Desktop.
Snippet for pabloplazalastras
function jmig_js() {
global $post;
if( has_shortcode( $post->post_content, 'gallery') ) {
wp_register_script('masonry_mine',
get_stylesheet_directory_uri() . '/inc/assets/js/Masonrymine.js',
array('masonry'),
'2.1.6',
true);
wp_enqueue_script('masonry_mine');
}
}
add_action( 'wp_enqueue_scripts', 'jmig_js');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment