Skip to content

Instantly share code, notes, and snippets.

@cmg-jess
Created July 14, 2015 23:45
Show Gist options
  • Save cmg-jess/3a5305c750da948f1994 to your computer and use it in GitHub Desktop.
Save cmg-jess/3a5305c750da948f1994 to your computer and use it in GitHub Desktop.
add_filter('redirect_canonical', 'no_redirect_on_404');
function no_redirect_on_404($redirect_url)
{
if (is_404()) {
return false;
}
return $redirect_url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment