wppaste
WordPress

apply_filters( 'the_terms', string $term_list, string $taxonomy, string $before, string $sep, string $after )

Since
2.9.0
Filters the list of terms to display.

Parameters

$term_liststring
List of terms to display.
$taxonomystring
The taxonomy name.
$beforestring
String to use before the terms.
$sepstring
String to use between the terms.
$afterstring
String to use after the terms.

Fired at · 1

  • wp-includes/category-template.php:1475the_terms()

Source

	 * @param string $term_list List of terms to display.	 * @param string $taxonomy  The taxonomy name.	 * @param string $before    String to use before the terms.	 * @param string $sep       String to use between the terms.	 * @param string $after     String to use after the terms.	 */	echo apply_filters( 'the_terms', $term_list, $taxonomy, $before, $sep, $after );} /** * Checks if the current post has any of given category. * * The given categories are checked against the post's categories' term_ids, names and slugs.

History

Introduced in 2.9.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.

About this page

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