On this page
apply_filters( "manage_{$this->screen->taxonomy}_custom_column", string $string, string $column_name, int $term_id )
Filters the displayed columns in the terms list table.
Description
The dynamic portion of the hook name, $this->screen->taxonomy, refers to the slug of the current taxonomy.
Possible hook names include:
manage_category_custom_columnmanage_post_tag_custom_column
Parameters
$stringstring-
Custom column output. Default empty.
$column_namestring-
Name of the column.
$term_idint-
Term ID.
Source
File: wp-admin/includes/class-wp-terms-list-table.php. View all references
return apply_filters( "manage_{$this->screen->taxonomy}_custom_column", '', $column_name, $item->term_id );
Related
Used By
| Used By | Description |
|---|---|
| WP_Terms_List_Table::column_default() wp-admin/includes/class-wp-terms-list-table.php |
Changelog
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/manage_this-screen-taxonomy_custom_column