2011-02-10 88 views
2

如何顯示作者在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'放在什麼位置?

謝謝

回答

3

<?php the_author_posts() ?>會做到這一點。來自wp-includes/author-template.php

get_the_author_posts()返回值the_author_posts()來回應它。

相關問題