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:
定义位置
  • wp-includes/comment-template.php
    , line 582
引入
0.71
弃用

Displays the comment date of the current comment.

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