Definition:
function get_comment_date( $d = '', $comment_ID = 0 ) {}
Retrieve the comment date of the current comment.
Parameters
- string $d: The format of the date (defaults to user’s config)
- int $comment_ID: The ID of the comment for which to get the date. Optional.
Return values
returns:The comment’s date
Defined filters
- get_comment_date
apply_filters('get_comment_date', $date, $d)
Source code
function get_comment_date( $d = '', $comment_ID = 0 ) {
$comment = get_comment( $comment_ID );
if ( '' == $d )
$date = mysql2date(get_option('date_format'), $comment->comment_date);
else
$date = mysql2date($d, $comment->comment_date);
return apply_filters('get_comment_date', $date, $d);
}
1310

February 12, 2011 


No comments yet... Be the first to leave a reply!