Skip to content

Instantly share code, notes, and snippets.

@asifsomy
Last active January 6, 2016 13:17
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 asifsomy/50f56e2d8c6361241fa1 to your computer and use it in GitHub Desktop.
Save asifsomy/50f56e2d8c6361241fa1 to your computer and use it in GitHub Desktop.
Remove Unwanted Archive URLs
function cd_remove_unwanted_archives(){
if( is_search() || is_category() || is_tag() || is_date() || is_author() ) {
global $wp_query;
$wp_query->set_404();
}
}
add_action('template_redirect', 'cd_remove_unwanted_archives');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment