如何从作者 ID 获取 WordPress 帖子总数?
我到处找遍了,似乎找不到这个。我知道循环中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 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().