WordPress: Number of posts by author

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

e.g.

Read More
<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

Related posts

Leave a Reply

1 comment