get_the_author_posts()
Retrieve the number of posts by the author of the current post.
Description Description
Return Return
(int) The number of posts by the author.
Source Source
File: wp-includes/author-template.php
function get_the_author_posts() {
$post = get_post();
if ( ! $post ) {
return 0;
}
return count_user_posts( $post->post_author, $post->post_type );
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Basic Example
Displays the author’s name and number of posts.
Output is “Harriett Smith has blogged 4,250 posts.”