Advertisement
swte

Move script to footer on certain pages

Oct 5th, 2020
1,167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. add_filter('swift_performance_option_footer-scripts', function($scripts){
  2.     // Condition here
  3.     if ($_SERVER['REQUEST_URI'] == 'specific-page'){
  4.         $scripts[] = 'somescript.js';
  5.     }
  6.     return $scripts;
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement