The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug. Possible hook names include: <ul> <li>term_links-category</li> <li>term_links-post_tag</li> <li>term_links-post_format</li> </ul>
1369*-`term_links-post_format`1370*1371* @since 2.5.01372*1373* @param string[]$links An array of term links.1374*/1375$term_links=apply_filters("term_links-{$taxonomy}",$links);// phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores13761377return$before.implode($sep,$term_links).$after;1378}13791380/**1381* Retrieves term parents with separator.
History
Introduced in 2.5.0. Unchanged from 6.7.7 through 7.1.0.