Advertisement
swte

Skip ratedo.de scripts

Nov 19th, 2024 (edited)
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter('swift3_skip_js_optimization', function($result, $tag){
  4.       if (isset($tag->attributes['src']) && strpos($tag->attributes['src'], 'ratedo.de') !== false){
  5.             return true;
  6.       }
  7.  
  8.     return $result;
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement