Advertisement
swte

Exclude Script Swift AI

Jan 23rd, 2025 (edited)
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Plugin Name: Exclude Script
  4.  */
  5.  
  6. add_filter('swift3_skip_js_optimization', function($result, $tag){
  7.       if ((isset($tag->attributes['src']) && strpos($tag->attributes['src'], 'themoneytizer.com') !== false)){
  8.             return true;
  9.       }
  10.  
  11.       return $result;
  12. }, 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement