comment_date()
Display the comment date of the current comment.
Uses: get_comment_date()
No Hooks.
Return
null
. Nothing.
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
Changelog
Since 0.71 | Introduced. |
Since 4.4.0 | Added the ability for $comment_ID to also accept a WP_Comment object. |
Code of comment_date() comment date WP 5.9.3
function comment_date( $format = '', $comment_ID = 0 ) { echo get_comment_date( $format, $comment_ID ); }