Skip to content

Instantly share code, notes, and snippets.

@rilwis
Created December 21, 2023 09:27
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 rilwis/a7ca4bc716c0036624d7068dd5742498 to your computer and use it in GitHub Desktop.
Save rilwis/a7ca4bc716c0036624d7068dd5742498 to your computer and use it in GitHub Desktop.
Set status 410 for deleted pages
<?php
add_action( 'template_redirect', function () {
if ( ! is_404() ) {
return;
}
$path = trim( $_SERVER['REQUEST_URI'] ?? '', '/' );
if ( $path === 'your-deleted-page' ) {
status_header( 410 );
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment