wpseek.com
A WordPress-centric search engine for devs and theme authors



manage_{$this->screen->taxonomy}_custom_column › WordPress Filter Hooks

Since2.8.0
Deprecatedn/a
apply_filters( "manage_{$this->screen->taxonomy}_custom_column", '', $column_name, $tag->term_id )
Parameters: (3)
  • () string Custom column output. Default empty.
    Required: Yes
  • () column_name Name of the column.
    Required: Yes
  • () term_id Term ID.
    Required: Yes
Defined at:
Codex:

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. Possible hook names include: - `manage_category_custom_column` - `manage_post_tag_custom_column`


Related Functions:


Source

return apply_filters( "manage_{$this->screen->taxonomy}_custom_column", '', $column_name, $tag->term_id );