函数名称:get_comment_time()
函数描述:获取评论的时间
使用语法:get_comment_time( $d = '', $gmt = false )
参数:
- $d:时间格式。默认为空白表示使用 WordPress 设置中的时间格式。可以使用 PHP 中的 date() 函数的格式化字符串。
- $gmt:是否使用 GMT 时间。默认为 false。
返回值:返回评论的时间。
示例用法:
1. 获取评论的默认格式时间
$time = get_comment_time();
echo $time;
2. 获取评论的自定义格式时间
$time = get_comment_time('Y年m月d日 H:i');
echo $time;
3. 获取评论的 GMT 时间
$time = get_comment_time('', true);
echo $time;
注意事项:
- get_comment_time() 函数必须在 WordPress 循环中使用,否则无法获取到评论的时间。
- 如果评论的时间是以 GMT 时间存储的,需要设置 $gmt 参数为 true 才能获取到正确的时间。
0 个评论