comments_number

apply_filters( ‘comments_number’, string $output, int $…

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

筛选挂钩:筛选要显示的注释计数。
Filter Hook: Filters the comments count for display.

目录锚点:#说明#参数#源码


说明(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.0 wp-includes/comment-template.php:945 1 0
类别:WordPress 钩子手册 > comment_hook

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

评论 (0)COMMENT

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