Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Crocoblock/c1876b67114e944fbee9c7c36821b0f9 to your computer and use it in GitHub Desktop.
Save Crocoblock/c1876b67114e944fbee9c7c36821b0f9 to your computer and use it in GitHub Desktop.
Fix images loading when logged out in the Image Comparison and Accordion widgets
<?php
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