WordPress:按作者列出的帖子数量
如何显示作者在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
会做到这一点。从 wp-includes/author-template.php
get_the_author_posts()
返回值,the_author_posts()
回显它。<?php the_author_posts() ?>
will do it. From wp-includes/author-template.phpget_the_author_posts()
to return the value,the_author_posts()
to echo it.