diff --git a/drush_delete.drush.inc b/drush_delete.drush.inc
index 87ff95d..8527cb3 100644
--- a/drush_delete.drush.inc
+++ b/drush_delete.drush.inc
@@ -24,6 +24,14 @@ function drush_delete_drush_command() {
     'drupal dependencies' => ['drush_delete'],
     'aliases' => ['delete-all entity'],
   ];
+  $items['delete-all-taxonomy-vocabulary-term'] = [
+    'description' => 'Delete selected Taxonomy Vocabulary terms.',
+    'arguments' => [
+      'type' => 'The taxonomy vocabulary name',
+    ],
+    'drupal dependencies' => ['drush_delete'],
+    'aliases' => ['delete-all taxonomy-vocabulary'],
+  ];
   return $items;
 }
 
@@ -46,3 +54,13 @@ function drush_drush_delete_delete_all_entity($type = '') {
   $service = \Drupal::service('drush_delete.entity');
   drush_print($service->deleteAllEntity($type));
 }
+
+/**
+ * Call back function drush_custom_drush_command_say_hello()
+ * The call back function name in the  following format
+ *   drush_{module_name}_{item_id_for_command}()
+ */
+function drush_drush_delete_delete_all_taxonomy_vocabulary_term($type = '') {
+  $service = \Drupal::service('drush_delete.entity');
+  drush_print($service->deleteAllTerms($type));
+}
diff --git a/src/DeleteContent.php b/src/DeleteContent.php
index d54c895..7bce69f 100644
--- a/src/DeleteContent.php
+++ b/src/DeleteContent.php
@@ -83,4 +83,30 @@ class DeleteContent {
     }
   }
 
+  /**
+   * To delete the taxonomy vocabulary terms.
+   *
+   * @param string $type
+   *   Entity type.
+   *
+   * @return string
+   *   return.
+   */
+  public function deleteAllTerms($type) {
+    $tids = \Drupal::entityQuery('taxonomy_term')
+      ->condition('vid', $type)
+      ->execute();
+    if (!empty($tids)) {
+      $count = count($tids);
+      $controller = \Drupal::entityTypeManager()->getStorage('taxonomy_term');
+      $entities = $controller->loadMultiple($tids);
+      $controller->delete($entities);
+      return $count . " no of contents are deleted";
+    }
+    else {
+      return "Content not found !";
+    }
+
+  }
+
 }
