manage_{$this->screen->taxonomy}_custom_column

过滤钩子
apply_filters( "manage_{$this->screen->taxonomy}_custom_column", '', $column_name, $item->term_id )
参数
  • (string) $string Custom column output. Default empty.
    Required:
  • (string) $column_name Name of the column.
    Required:
  • (int) $term_id Term ID.
    Required:
定义位置
相关勾子
manage_this-screen-id_custom_columnmanage_themes_custom_columnmanage_this-screen-id_custom_column_js_templatemanage_link_custom_columnmanage_comments_custom_column
引入
2.8.0
弃用
-

manage_{$this->screen->taxonomy}_custom_column: 这是WordPress中的一个动作钩子,允许插件或主题为任何自定义分类法在分类法表中添加自定义列。钩子名称中的$this->screen->taxonomy占位符被替换成实际的分类法名称。这个钩子是在wp-admin/includes/class-wp-terms-list-table.php文件中触发的。

过滤术语列表表中的显示列。

钩子名称的动态部分,$this->screen->taxonomy,指的是当前分类法的lug。

可能的钩子名称包括:

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

常见问题

FAQs
查看更多 >