wppaste
WordPress

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

Since
2.3.0, 4.4.0
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: <ul> <li>get_category</li> <li>get_post_tag</li> </ul>

Parameters

$_termWP_Term
Term object.
$taxonomystring
The taxonomy slug.

Fired at · 1

  • wp-includes/taxonomy.php:1040get_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_{$taxonomy}", $_term, $taxonomy ); 	// Bail if a filter callback has changed the type of the `$_term` object.	if ( ! ( $_term instanceof WP_Term ) ) {		return $_term;	}

History

Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 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 docblock
2.3.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 6.8.8 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.