update_post_term_count_statuses

过滤钩子
apply_filters( 'update_post_term_count_statuses', $post_statuses, $taxonomy )
参数
  • (string[]) $post_statuses List of post statuses to include in the count. Default is 'publish'.
    Required:
  • (WP_Taxonomy) $taxonomy Current taxonomy object.
    Required:
定义位置
相关勾子
post_date_column_statuswp_set_comment_statusupdate_postmetaupdated_postmetapost_date_column_time
相关方法
_update_post_term_countupdate_user_statusupdate_posts_countupdate_post_author_cachesupdate_post_parent_cacheswp_update_term_count
引入
5.7.0
弃用
-

update_post_term_count_statuses 是 WordPress 中的过滤器钩子,它允许开发人员将自定义文章状态添加到用于更新术语计数数据的文章状态列表。 此钩子用于扩展 WordPress 术语计数更新过程的功能,允许开发人员在计算中包含自定义文章状态。

过滤用于更新术语计数的文章状态。

$post_statuses = esc_sql( apply_filters( 'update_post_term_count_statuses', $post_statuses, $taxonomy ) );

常见问题

FAQs
查看更多 >