---
title: "Filter: bricks/builder/term_name"
description: "Filters the term name displayed in the Bricks builder interface (e.g., in taxonomy pickers)."
canonical: "https://academy.bricksbuilder.io/developer/hooks/filters/bricks-builder-term_name/"
markdownUrl: "https://academy.bricksbuilder.io/developer/hooks/filters/bricks-builder-term_name.md"
pageType: "article"
section: "developer"
category: "hooks"
lastmod: "2026-05-21T13:58:32.000Z"
---
Filters the term name displayed in the Bricks builder interface (e.g., in taxonomy pickers).

## Parameters

- `$term_name` (*string*): The formatted term name (e.g., `Term Name (Taxonomy Label)`).
- `$term_id` (*int|string*): The ID of the term.
- `$taxonomy` (*string*): The slug of the taxonomy.

## Example usage

```php
add_filter( 'bricks/builder/term_name', function( $term_name, $term_id, $taxonomy ) {
    // Example: Add the term ID to the name
    return $term_name . ' [ID: ' . $term_id . ']';
}, 10, 3 );
```