get_comment_time

apply_filters( ‘get_comment_time’, string|int $date, st…

apply_filters( ‘get_comment_time’, string|int $date, string $format, bool $gmt, bool $translate, WP_Comment $comment )

过滤器::过滤返回的注释时间。
Filter Hook: Filters the returned comment time.

目录锚点:#参数#源码


参数(Parameters)

参数 类型 说明
$date (string | int) 注释时间,格式为日期字符串或Unix时间戳。
$format (string) 日期格式。
$gmt (bool) 是否正在使用GMT日期。
$translate (bool) 是否翻译时间。
$comment (WP_Comment) 注释对象。

源码(Source)

/**
 * Retrieve the comment time of the current comment.
 *
 * @since 1.5.0
 *
 * @global object $comment
 *
 * @param string $d         Optional. The format of the time. Default user's settings.
 * @param bool   $gmt       Optional. Whether to use the GMT date. Default false.
 * @param bool   $translate Optional. Whether to translate the time (for use in feeds).
 *                          Default true.
 * @return string The formatted time.
 */
function get_comment_time( $d = '', $gmt = false, $translate = true ) {
	global $comment;
	$comment_date = $gmt ? $comment->comment_date_gmt : $comment->comment_date;
	if ( '' == $d )
		$date = mysql2date(get_option('time_format'), $comment_date, $translate);
	else
		$date = mysql2date($d, $comment_date, $translate);

	/**
	 * Filter the returned comment time.
	 *
	 * @since 1.5.0
	 *
	 * @param string|int $date      The comment time, formatted as a date string or Unix timestamp.
	 * @param string     $d         Date format.
	 * @param bool       $gmt       Whether the GMT date is in use.
	 * @param bool       $translate Whether the time is translated.
	 * @param object     $comment   The comment object.
	 */
	return apply_filters( 'get_comment_time', $date, $d, $gmt, $translate, $comment );
}
更新版本 源码位置 使用 被使用
1.5.0 wp-includes/comment-template.php:1057 1 0
类别:WordPress 钩子手册 > comment_hook

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

评论 (0)COMMENT

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