Advertisement
mbis

Perfmatters redirect fix

Feb 20th, 2020
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. function pm_fix_perfmatters() {
  2.     global $wp_query;
  3.  
  4.     if(isset($_REQUEST['perfmatters'])) {
  5.         $wp_query->query_vars['do_not_redirect'] = 1;
  6.     }
  7. }
  8. add_action('wp', 'pm_fix_perfmatters', 999);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement