diff --git a/includes/taxonomy.inc b/includes/taxonomy.inc
deleted file mode 100644
index d9bd09069b66b7e286e59a50ef618482637c39a5..0000000000000000000000000000000000000000
--- a/includes/taxonomy.inc
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-/**
- * @file
- * Functions for fixing taxonomies.
- */
-
-/**
- * Implements theme_suggestions_taxonomy_term_alter()
- */
-function gesso_theme_suggestions_taxonomy_term_alter(array &$suggestions, array $variables) {
-  $bundle = $variables['elements']['name']['#bundle'];
-  $view_mode = $variables['elements']['#view_mode'];
-  $suggestions[] = 'taxonomy_term__' . $view_mode;
-  $suggestions[] = 'taxonomy_term__' . $bundle . '__' . $view_mode;
-}