Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Plugin Name: Swift Performance Tweaks
- * Exclude Scripts on specific pages
- */
- add_filter('swift_performance_option_exclude-scripts', function($value){
- $pages = array(
- '', // use empty for homepage
- '/page-1',
- '/another-page',
- );
- if (isset($_SERVER['REQUEST_URI']) && in_array(rtrim(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH),'/'), $pages)){
- $value[] = 'jquery.min.js';
- }
- return $value;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement