comment_date( string $format = '', int|WP_Comment $comment_id )

Displays the comment date of the current comment.


Parameters

$format

(Optional) PHP date format. Defaults to the 'date_format' option.

Default value: ''

$comment_id

(Optional) WP_Comment or ID of the comment for which to print the date.<br> Default current comment.


Source

File: wp-includes/comment-template.php

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


Changelog

Changelog
Version Description
4.4.0 Added the ability for $comment_id to also accept a WP_Comment object.
0.71 Introduced.