comment_date()WP 0.71

Display the comment date of the current comment.

No Hooks.

Return

null. Nothing (null).

Usage

comment_date( $format, $comment_id );
$format(string)
PHP date format. option.
Default: 'date_format'
$comment_id(int|WP_Comment)
WP_Comment or ID of the comment for which to print the date.
Default: current comment

Examples

0

#1 Display the date of the current comment in desired format:

Comment date: <?php comment_date( 'n-j-Y' ); ?>

Displays: Comment date: 12-6-2011.

Changelog

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

comment_date() code WP 6.5.2

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