Skip to content

Instantly share code, notes, and snippets.

@remcotolsma
Created January 15, 2016 14:08
Show Gist options
  • Save remcotolsma/da2879f6d3f9860a44bc to your computer and use it in GitHub Desktop.
Save remcotolsma/da2879f6d3f9860a44bc to your computer and use it in GitHub Desktop.
Solve WordPress redirect issues
<?php
if ( filter_has_var( INPUT_GET, 'debug' ) ) {
function debug_wp_redirect( $location, $status ) {
debug_print_backtrace();
return $location;
}
add_filter( 'wp_redirect', 'debug_wp_redirect', 1000, 2 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment