Definition:
function get_the_author_posts() {}
Return values
returns:The number of posts by the author.
Source code
function get_the_author_posts() {
global $post;
return count_user_posts($post->post_author);
}
1809
Definition:
function get_the_author_posts() {}
returns:The number of posts by the author.
function get_the_author_posts() {
global $post;
return count_user_posts($post->post_author);
}
1809
Definition:
function get_the_author_nickname() {}
returns:The author’s nickname.
function get_the_author_nickname() {
_deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'nickname\')' );
return get_the_author_meta('nickname');
}
1807
Definition:
function get_the_author_msn() {}
returns:The author’s MSN address.
function get_the_author_msn() {
_deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'msn\')' );
return get_the_author_meta('msn');
}
1805
Definition:
function get_the_author_login() {}
returns:The author’s login name (username).
function get_the_author_login() {
_deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'login\')' );
return get_the_author_meta('login');
}
1801