get_comments_number

函数
get_comments_number ( $post = 0 )
参数
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is the global `$post`.
    Required:
返回值
  • (string|int) If the post exists, a numeric string representing the number of comments the post has, otherwise 0.
定义位置
相关方法
get_comments_number_textcomments_numberget_comment_metaget_comment_timeget_comments_link
引入
1.5.0
弃用
-

get_comments_number: 这个函数用来检索一个文章或页面的评论总数。它返回的是整数值。

检索一个文章的评论数量。

function get_comments_number( $post = 0 ) {
	$post = get_post( $post );

	$count   = $post ? $post->comment_count : 0;
	$post_id = $post ? $post->ID : 0;

	/**
	 * Filters the returned comment count for a post.
	 *
	 * @since 1.5.0
	 *
	 * @param string|int $count   A string representing the number of comments a post has, otherwise 0.
	 * @param int        $post_id Post ID.
	 */
	return apply_filters( 'get_comments_number', $count, $post_id );
}

常见问题

FAQs
查看更多 >