apply_filters( 'get_term', WP_Term $_term, string $taxonomy )
- Since
- 2.3.0, 4.4.0
Filters a taxonomy term object.
Description
The 'get_$taxonomy' hook is also available for targeting a specific taxonomy.
Parameters
$_termWP_Term- Term object.
$taxonomystring- The taxonomy slug.
Fired at · 1
wp-includes/taxonomy.php:1021get_term()
Source
* @since 2.3.0 * @since 4.4.0 `$_term` is now a `WP_Term` object. * * @param WP_Term $_term Term object. * @param string $taxonomy The taxonomy slug. */ $_term = apply_filters( 'get_term', $_term, $taxonomy ); /** * Filters a taxonomy term object. * * The dynamic portion of the hook name, `$taxonomy`, refers * to the slug of the term's taxonomy.History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
4.4.0
$_term is now a WP_Term object.from the docblock2.3.0
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.