Working with Drupal Taxonomy

Last Updated: 15 Dec 2024

Working with Drupal Taxonomy

Taxonomy in Drupal is a powerful feature that helps you classify and organize your content. It enables you to create categories, tags, or vocabularies to manage and structure your website effectively. This tutorial will guide you through the basics of Drupal taxonomy and how to use it to streamline content management on your site.

What is Drupal Taxonomy?

Taxonomy is a way to classify content using terms grouped into vocabularies. For example:

  • Vocabulary: "Blog Categories"
    • Terms: "Tech", "Lifestyle", "Travel"
  • Vocabulary: "Tags"
    • Terms: "Drupal", "PHP", "Tutorials"

By assigning these terms to your content, you can easily group and filter it.

Steps to Create and Use Taxonomy

1. Create a Vocabulary
  1. Go to Structure > Taxonomy.
  2. Click Add Vocabulary.
  3. Enter a name for your vocabulary (e.g., "Tags") and a description.
  4. Click Save.
2. Add Terms to the Vocabulary
  1. Under the newly created vocabulary, click Add Terms.
  2. Enter the term name (e.g., "Drupal") and description (optional).
  3. Save your term.
3. Add Taxonomy to Content Types
  1. Go to Structure > Content Types.
  2. Edit the content type (e.g., Article).
  3. Click Manage Fields.
  4. Add a new field:
    • Label: "Tags"
    • Field Type: Term Reference
    • Widget: Autocomplete (Tags Style) or Checkboxes/Radio Buttons
  5. Save the field.
4. Assign Terms to Content
  1. When creating or editing content (e.g., an Article), you'll see the "Tags" field.
  2. Start typing a term, or select one from the list.
  3. Save the content to assign the terms.

Displaying Taxonomy Terms on Your Site

Using Views
  1. Go to Structure > Views.
  2. Click Add View and name it (e.g., "Tagged Content").
  3. Select the content type (e.g., Articles).
  4. Add a filter for the taxonomy field (e.g., Tags).
  5. Configure the display and save the view.
Using Blocks

You can display a list of taxonomy terms in a block:

  1. Go to Structure > Taxonomy.
  2. Click the dropdown for the vocabulary and select List Terms.
  3. Use the taxonomy term URL to create menu links or use blocks.

Benefits of Using Taxonomy

  • Improved Organization: Helps users find related content easily.
  • Dynamic Content Filtering: Enables advanced filtering using Views.
  • SEO Optimization: Helps search engines understand your site's structure.

Example Use Case

Imagine you’re running a Drupal-based blog. You can:

  • Create a vocabulary called Categories with terms like "Tech", "Lifestyle", and "Travel".
  • Assign categories to articles, and then create a view that displays articles based on these categories.

With Drupal taxonomy, you can transform your website into a well-organized and user-friendly platform. Start experimenting today to unlock its full potential!

Let me know if you want any specific examples or more advanced use cases for taxonomy!

Adding taxonomy via code

// Example of defining a vocabulary programmatically in Drupal.
use Drupal\taxonomy\Entity\Vocabulary; 
$vocabulary = Vocabulary::create([ 
   'id' => 'example_tags', 
   'vid' => 'example_tags', 
   'description' => 'A vocabulary for example tags.', 
   'name' => 'Example Tags', 
]); 
$vocabulary->save();