Skip to content

Instantly share code, notes, and snippets.

@mikehins
Created March 27, 2019 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikehins/c7f972ac3d8046f7e32bc1cc42de519b to your computer and use it in GitHub Desktop.
Save mikehins/c7f972ac3d8046f7e32bc1cc42de519b to your computer and use it in GitHub Desktop.
Remove 404 from wordpress for debug purposes
remove_action( 'template_redirect', 'maybe_redirect_404' );
add_filter( 'pre_handle_404', function() {
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment