wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_the_author_posts › WordPress Function

Seit1.5.0
Veraltetn/v
get_the_author_posts ( Keine Parameter )
Gibt zurück:
  • (int) The number of posts by the author.
Definiert in:
Codex:

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



Quellcode

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