comment_date()
Display the comment date of the current comment.
Uses: get_comment_date()
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
#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() comment date code WP 6.7.1
function comment_date( $format = '', $comment_id = 0 ) { echo get_comment_date( $format, $comment_id ); }