comment_date

函数
comment_date ( $format = '', $comment_ID = 0 )
参数
  • (string) $format Optional. PHP date format. Defaults to the 'date_format' option.
    Required:
    Default: (empty)
  • (int|WP_Comment) $comment_ID WP_Comment or ID of the comment for which to print the date. Default current comment.
    Required:
定义位置
相关方法
get_comment_datecomment_typecomment_timecomment_textcomment_id
引入
0.71
弃用
-

comment_date用来显示评论发布的日期。它需要一个参数,即显示日期的格式。默认格式是’F j, Y \a\t g:i a’,它以人类可读的格式显示日期(例如,2023年1月1日下午2:30)。

显示当前评论的评论日期。

function comment_date( $format = '', $comment_ID = 0 ) {
	echo get_comment_date( $format, $comment_ID );
}

常见问题

FAQs
查看更多 >