Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Plugin Name: Exclude Script
- */
- add_filter('swift3_skip_js_optimization', function($result, $tag){
- if ((isset($tag->attributes['src']) && strpos($tag->attributes['src'], 'themoneytizer.com') !== false)){
- return true;
- }
- return $result;
- }, 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement