Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tweenpix/02ad3f754a6246c6c113f06b94e45219 to your computer and use it in GitHub Desktop.
Save tweenpix/02ad3f754a6246c6c113f06b94e45219 to your computer and use it in GitHub Desktop.
Wordpress disable archive of tag, author, date
function wpcourses_disable_date_archives( $query ){
if( is_date() || is_tag() || is_author() ) {
wp_redirect( home_url() );
exit;
}
}
add_action( 'parse_query', 'wpcourses_disable_date_archives' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment