gpt4 book ai didi

WordPress : How to count number of posts on a tag

转载 作者:行者123 更新时间:2023-12-02 22:19:10 24 4
gpt4 key购买 nike

我有一个问题。

如何计算某个标签的帖子数量?

示例:标记照片 (67)

谢谢

最佳答案

使用下面的代码:

$taxonomy = "category"; // can be category, post_tag, or custom taxonomy name

// Using Term Slug
$term_slug = 'some-category';
$term = get_term_by('slug', $term_slug, $taxonomy);

// Fetch the count
echo $term->count;

关于WordPress : How to count number of posts on a tag,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5259817/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com