apply_filters( “term_links-{$taxonomy}”, string[] $links )

In this article

Filters the term links for a given taxonomy.

Description

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

Possible hook names include:

  • term_links-category
  • term_links-post_tag
  • term_links-post_format

Parameters

$linksstring[]
An array of term links.

Source

$term_links = apply_filters( "term_links-{$taxonomy}", $links );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

Changelog

VersionDescription
2.5.0Introduced.

User Contributed Notes

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