post_column_taxonomy_links

过滤钩子
apply_filters( 'post_column_taxonomy_links', $term_links, $taxonomy, $terms )
参数
  • (string[]) $term_links Array of term editing links.
    Required:
  • (string) $taxonomy Taxonomy name.
    Required:
  • (WP_Term[]) $terms Array of term objects appearing in the post row.
    Required:
定义位置
相关勾子
post_comments_linkrest_route_for_taxonomy_itemsplugin_action_linkspost_date_column_statuspost_date_column_time
相关方法
documentation_linkget_post_taxonomies_post_format_linkposts_nav_linkget_attachment_taxonomiespost_reply_link
引入
5.2.0
弃用
-

post_column_taxonomy_links。这个钩子允许你修改WordPress仪表盘中文章管理屏幕上的分类栏的链接。你可以使用这个钩子来添加自定义链接或改变现有链接的行为。

过滤edit.php的‘$taxonomy’列中的链接。

$term_links = apply_filters( 'post_column_taxonomy_links', $term_links, $taxonomy, $terms );

常见问题

FAQs
查看更多 >