baseando-se na resposta do chrisguitarguy, aqui está um pequeno trecho que você pode colocar no arquivo functions.php do seu tema para fazer o trabalho
add_action('template_redirect', 'wpse69948_archive_disabler');
function wpse69948_archive_disabler()
{
if(is_tag() || is_category() || is_date() || is_author())
{
global $wp_query;
$wp_query->set_404();
}
}