term_links-category
Filters the term links for a given taxonomy.
This is one of the variants of the dynamic hook term_links-(taxonomy)
Usage
add_filter( 'term_links-category', 'wp_kama_term_links_category_filter' ); /** * Function for `term_links-category` filter-hook. * * @param string[] $links An array of term links. * * @return string[] */ function wp_kama_term_links_category_filter( $links ){ // filter... return $links; }
- $links(string[])
- An array of term links.
Changelog
Since 2.5.0 | Introduced. |
Where the hook is called
wp-includes/category-template.php 1375
$term_links = apply_filters( "term_links-{$taxonomy}", $links ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores