如何从作者 ID 获取 WordPress 帖子总数?

发布于 2024-12-05 10:39:57 字数 156 浏览 0 评论 0原文

我到处找遍了,似乎找不到这个。我知道循环中的 WP 变量可以使用 $post_count 但我是从外部函数写入的。我已经设置了 global wp_query 所以我应该能够提取号码,并且我也有用户 ID。

任何帮助将不胜感激:D

I've been scouring everywhere and can't seem to find this. I know the WP variable within the loop can use $post_count but I'm writing from an external function. I've set global wp_query so I should be able to pull out the number, and I have the user IDs as well.

Any help would be more than appreciated :D

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我为君王 2024-12-12 10:39:57

看一下 wp-includes/author-template.php。它包括用于提取作者数据以在主题中显示的各种函数。

在这种情况下,我认为您正在寻找 count_user_posts($userid)。如果您要检索的不仅仅是帖子计数,您可能需要创建 WP_Query() 的另一个实例。

Take a look at wp-includes/author-template.php. It includes various functions for pulling author data for display in a theme.

In this case, I think you are looking for count_user_posts($userid). If you are retrieving more than just post counts, you may want to create another instance of WP_Query().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文