the_author_posts() WordPress Function
The the_author_posts() function displays the number of posts an author has written. This is useful for blogrolls and author lists.
the_author_posts() #
Displays the number of posts by the author of the current post.
Source
File: wp-includes/author-template.php
function the_author_posts() {
echo get_the_author_posts();
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 0.71 | Introduced. |