post_column_taxonomy_links WordPress Filter Hook

The post_column_taxonomy_links hook is used to add custom links to the taxonomy columns on the post editing screen. This hook is useful for adding links to custom taxonomies or for adding extra information to the columns.

apply_filters( 'post_column_taxonomy_links', string[] $term_links, string $taxonomy, WP_Term[] $terms ) #

Filters the links in $taxonomy column of edit.php.


Parameters

$term_links

(string[])Array of term editing links.

$taxonomy

(string)Taxonomy name.

$terms

(WP_Term[])Array of term objects appearing in the post row.


Top ↑

Source

File: wp-admin/includes/class-wp-posts-list-table.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
5.2.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.