comments_number

筛选挂钩:筛选要显示的注释计数。

apply_filters( ‘comments_number’, string $output , int $number )

说明(Description)

另见函数 _n()


参数(Parameters)

参数类型说明
$output(string)基于计数是等于0、1还是1+而格式化的可翻译字符串。
$number(int)发表评论的数量。

源码(Source)

/**
 * Display the language string for the number of comments the current post has.
 *
 * @since 0.71
 *
 * @param string $zero       Optional. Text for no comments. Default false.
 * @param string $one        Optional. Text for one comment. Default false.
 * @param string $more       Optional. Text for more than one comment. Default false.
 * @param string $deprecated Not used.
 */
function comments_number( $zero = false, $one = false, $more = false, $deprecated = '' ) {
	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, '1.3' );
	}
	echo get_comments_number_text( $zero, $one, $more );
}
更新版本源码位置使用被使用
1.5.0wp-includes/comment-template.php:94510
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索