get_the_author_posts [ WordPress Function ]
get_the_author_posts ( No parameters )
| Uses: |
|
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: the_author_posts, get_the_author_msn, get_the_author, get_the_author_meta, get_the_author_id
Retrieve the number of posts by the author of the current post.
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- Function Reference/get the author posts « WordPress Codex
Description. Returns the total number of posts an author has published. Drafts and private posts aren't counted. This tag must be used within The Loop.
codex.wordpress.org - Docs for page author-template.php
get_the_author_posts (line 166). Retrieve the number of posts by the author of the current post. return: The number of posts by the author. since: 1.5; usedby: ...
phpdoc.wordpress.org - get_the_author_posts
Function and Method Cross Reference. get_the_author_posts(). Defined at: /wp- includes/author-template.php -> line 158. Referenced 1 times: ...
phpxref.ftwr.co.uk - get_the_author_posts | A HitchHackers guide through WordPress
Feb 12, 2011 ... Source code. function get_the_author_posts() { global $post; return count_user_posts($post->post_author); }. 1809 ...
hitchhackerguide.com