Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何显示作者在 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' ?
谢谢
<?php the_author_posts() ?>会做的。来自 wp-includes/author-template.php
<?php the_author_posts() ?>
get_the_author_posts()返回值,the_author_posts()回显它。
get_the_author_posts()
the_author_posts()