comment_time

函数
comment_time ( $format = '' )
参数
  • (string) $format Optional. PHP time format. Defaults to the 'time_format' option.
    Required:
    Default: (empty)
定义位置
相关方法
get_comment_timecomment_typecomment_datecomment_textcomment_id
引入
0.71
弃用
-

comment_time是WordPress的一个函数,用来显示一个评论发布的时间。它需要一个参数,即显示时间的格式。默认的格式是’g:i a’,它以12小时的格式显示时间(例如,下午2:30)。

显示当前评论的评论时间。

function comment_time( $format = '' ) {
	echo get_comment_time( $format );
}

常见问题

FAQs
查看更多 >