apply_filters( 'post_column_taxonomy_links', string[] $term_links, string $taxonomy, \WP_Term[] $terms )
- Since
- 5.2.0
Filters the links in
$taxonomy column of edit.php.Compatibility
- WordPress
- since 5.2.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$term_linksstring[]- Array of term editing links.
$taxonomystring- Taxonomy name.
$terms\WP_Term[]- Array of term objects appearing in the post row.
Where this hook fires · 1
wp-admin/includes/class-wp-posts-list-table.php:1454WP_Posts_List_Table::column_default()
Source code
* @since 5.2.0 * * @param string[] $term_links Array of term editing links. * @param string $taxonomy Taxonomy name. * @param WP_Term[] $terms Array of term objects appearing in the post row. */ $term_links = apply_filters( 'post_column_taxonomy_links', $term_links, $taxonomy, $terms ); echo implode( wp_get_list_item_separator(), $term_links ); } else { echo '<span aria-hidden="true">—</span><span class="screen-reader-text">' . $taxonomy_object->labels->no_terms . '</span>'; } return;Changelog
Introduced in 5.2.0. Unchanged from 6.7.7 through 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.