Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Last active March 18, 2023 06:37
Show Gist options
  • Save vielhuber/b18c26319b04052f27d0e6a74a69cbe3 to your computer and use it in GitHub Desktop.
Save vielhuber/b18c26319b04052f27d0e6a74a69cbe3 to your computer and use it in GitHub Desktop.
disable category / tag / date / author / archive pages / attachments #wordpress
<?php
function disable_uneeded_archives() {
if( is_category() || is_tag() || is_date() || is_author() || is_attachment() ) {
header("Status: 404 Not Found");
global $wp_query;
$wp_query->set_404();
status_header(404);
nocache_headers();
}
}
add_action('template_redirect', 'disable_uneeded_archives');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment