manage_(screen_taxonomy)_custom_column filter-hook . WP 2.8.0
Filters the displayed columns in the terms list table.
The dynamic portion of the hook name, $this->screen->taxonomy, refers to the slug of the current taxonomy.
Usage
add_filter( 'manage_(screen_taxonomy)_custom_column', 'filter_function_name_642', 10, 3 ); function filter_function_name_642( $string, $column_name, $term_id ){ // filter... return $string; }
- $string(string)
- Blank string.
- $column_name(string)
- Name of the column.
- $term_id(int)
- Term ID.
Changelog
Since 2.8.0 | Introduced. |
Where the hook is called
manage_(screen_taxonomy)_custom_column
wp-admin/includes/class-wp-terms-list-table.php 625
return apply_filters( "manage_{$this->screen->taxonomy}_custom_column", '', $column_name, $tag->term_id );