apply_filters( “get_{$taxonomy}”, WP_Term $_term, string $taxonomy )

In this article

Filters a taxonomy term object.

Description

The dynamic portion of the hook name, $taxonomy, refers to the slug of the term’s taxonomy.

Possible hook names include:

  • get_category
  • get_post_tag

Parameters

$_termWP_Term
Term object.
$taxonomystring
The taxonomy slug.

Source

$_term = apply_filters( "get_{$taxonomy}", $_term, $taxonomy );

Changelog

VersionDescription
4.4.0$_term is now a WP_Term object.
2.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.