当前浏览:首页 / WordPress函数 / comment_time()

comment_time( string $format = '' )

显示当前评论的评论时间

comment 评论more...

timemore...


参数

$format

(string)(可选) PHP时间格式。默认为'time_format'选项。

默认值: ''


说明

有关时间格式,请参见格式化日期和时间



源码

查看源码 官方文档


更新日志

版本描述
0.71开始引入

使用示例

  • 示例1

    基本示例

    以“22:04:11”格式显示当前评论时间。

    <p>comment timestamp: <?php comment_time( 'H:i:s' ); ?></p>