Skip to content

Instantly share code, notes, and snippets.

@kaskad88
Created January 23, 2020 07:27
Show Gist options
  • Save kaskad88/0fbf03626012da68f940403f10fea75d to your computer and use it in GitHub Desktop.
Save kaskad88/0fbf03626012da68f940403f10fea75d to your computer and use it in GitHub Desktop.
add_action( 'init', function () {
global $wp_scripts;
$script = $wp_scripts->query( 'imagesloaded', 'registered' );
if ( ! $script ) {
return;
}
if ( ! in_array( 'jquery', $script->deps ) ) {
$script->deps[] = 'jquery';
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment