get_the_author_posts()

get_the_author_posts() 检索当前文章作者的文章数。Retrieve the number…

get_the_author_posts()

检索当前文章作者的文章数。
Retrieve the number of posts by the author of the current post.

目录锚点:#返回#源码#笔记


返回(Return)

(int)提交人的帖子数量。


源码(Source)

/**
 * Retrieve the number of posts by the author of the current post.
 *
 * @since 1.5.0
 *
 * @return int The number of posts by the author.
 */
function get_the_author_posts() {
	$post = get_post();
	if ( ! $post ) {
		return 0;
	}
	return count_user_posts( $post->post_author, $post->post_type );
}
更新版本 源码位置 使用 被使用
1.5.0 wp-includes/author-template.php:264 1 function 2

笔记(Notes)

基本示例

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册