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();
}


Top ↑

Changelog

Changelog
VersionDescription
0.71Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.