WordPress:按作者列出的帖子数量

发布于 2024-10-16 17:33:38 字数 329 浏览 5 评论 0原文

如何显示作者在 WordPress 网站上发表的帖子数量?

例如,

<div class="avatar-card-content">
    <h3><?php echo get_the_author(); ?></h3>
    <ul class="clearfix">
        <li>0 <span>Posts</span></li>
    </ul>
</div

我会在“0”的位置放什么?

谢谢

How can I show how many posts an author has made on a WordPress site?

e.g.

<div class="avatar-card-content">
    <h3><?php echo get_the_author(); ?></h3>
    <ul class="clearfix">
        <li>0 <span>Posts</span></li>
    </ul>
</div

What would I put in the place of the '0' ?

Thanks

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

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

发布评论

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

评论(1

狂之美人 2024-10-23 17:33:38

会做到这一点。从 wp-includes/author-template.php

get_the_author_posts() 返回值,the_author_posts() 回显它。

<?php the_author_posts() ?> will do it. From wp-includes/author-template.php

get_the_author_posts() to return the value, the_author_posts() to echo it.

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