Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Plugin Name: Swift Performance Tweaks
- * Load Scripts in Footer (exclude merging) on specific pages
- */
- add_filter('swift_performance_option_footer-scripts', function($value){
- $pages = array(
- '', // use empty for homepage
- '/page-1',
- '/another-page',
- );
- if (isset($_SERVER['REQUEST_URI']) && in_array(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH), $pages)){
- $value[] = 'wp-content/plugins/oxy-toolbox/';
- }
- return $value;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement