wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



get_the_author_posts › WordPress Function

Od1.5.0
Przestarzałyn/a
get_the_author_posts ( Brak parametrów )
Powrót:
  • (int) The number of posts by the author.
Zdefiniowane na:
Codex:

Retrieves the number of posts by the author of the current post.



Źródło

function get_the_author_posts() {
	$post = get_post();
	if ( ! $post ) {
		return 0;
	}
	return count_user_posts( $post->post_author, $post->post_type );
}