wpseek.com
WordPress开发者和主题制作者的搜索引擎



manage_{$this->screen->taxonomy}_custom_column › WordPress过滤钩子

Since2.8.0
已弃用n/a
apply_filters( "manage_{$this->screen->taxonomy}_custom_column", '', $column_name, $tag->term_id )
参数: (3)
  • (string) $string Custom column output. Default empty.
    Required: Yes
  • (string) $column_name Name of the column.
    Required: Yes
  • (int) $term_id Term ID.
    Required: Yes
定义在:
文档:

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:


源码

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