Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Dequeue the WP Image Zoom scripts.
- add_action( 'wp_print_scripts', function() {
- wp_dequeue_script( 'image_zoooom' );
- wp_dequeue_script( 'image_zoooom-init' );
- }, 100 );
- // Add the WP Image Zoom scripts only to specific pages or posts.
- add_action( 'wp_enqueue_scripts', function() {
- // Replace the following line with Conditional Tag which matches your page or pages.
- if ( ! is_single( 'simple-post-with-images' ) ) return;
- $in_footer = array( 'in_footer' => false, 'strategy' => 'defer', 'fetchpriority' => 'low' );
- // Load the jquery.image_zoom.js
- wp_register_script( 'image_zoooom-2', IMAGE_ZOOM_URL . 'assets/js/jquery.image_zoom.min.js', array( 'jquery' ), IMAGE_ZOOM_VERSION, $in_footer );
- wp_enqueue_script( 'image_zoooom-2' );
- // Load the image_zoom-init.js
- wp_register_script( 'image_zoooom-init-2', IMAGE_ZOOM_URL . 'assets/js/image_zoom-init.js', array( 'jquery' ), IMAGE_ZOOM_VERSION, $in_footer );
- wp_localize_script( 'image_zoooom-init-2', 'IZ', ImageZoooom::get_localize_vars() );
- wp_enqueue_script( 'image_zoooom-init-2' );
- }, 100 );
Advertisement
Add Comment
Please, Sign In to add comment