Advertisement
swte

Exclude inline styles on specific page

Jan 31st, 2020
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Plugin Name: Swift Performance Tweaks
  5.  */
  6.  
  7. add_filter('swift_performance_option_exclude-inline-styles', function($value){
  8.     if (isset($_SERVER['REQUEST_URI']) && preg_match('~^/?kontakt~', $_SERVER['REQUEST_URI'])){
  9.         return array('.');
  10.     }
  11.     return $value;
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement