Comments: Allow to pass `$comment_ID` parameter to `get_comment_time()`.
Props spacedmonkey, travisaxton, SergeyBiryukov, d-signed, audrasjb, rudlinkon, h4l9k, mukesh27, costdev. Fixes #52322. Built from https://develop.svn.wordpress.org/trunk@55284 git-svn-id: http://core.svn.wordpress.org/trunk@54817 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e374552961
commit
c03b3420d9
|
@ -1031,15 +1031,22 @@ function comment_text( $comment_ID = 0, $args = array() ) {
|
||||||
* Retrieves the comment time of the current comment.
|
* Retrieves the comment time of the current comment.
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
|
* @since 6.2.0 Added the ability for `$comment_ID` to also accept a WP_Comment object.
|
||||||
*
|
*
|
||||||
* @param string $format Optional. PHP time format. Defaults to the 'time_format' option.
|
* @param string $format Optional. PHP date format. Defaults to the 'time_format' option.
|
||||||
* @param bool $gmt Optional. Whether to use the GMT date. Default false.
|
* @param bool $gmt Optional. Whether to use the GMT date. Default false.
|
||||||
* @param bool $translate Optional. Whether to translate the time (for use in feeds).
|
* @param bool $translate Optional. Whether to translate the time (for use in feeds).
|
||||||
* Default true.
|
* Default true.
|
||||||
|
* @param int|WP_Comment $comment_ID Optional. WP_Comment or ID of the comment for which to get the date.
|
||||||
|
* Default is 0, or the global comment.
|
||||||
* @return string The formatted time.
|
* @return string The formatted time.
|
||||||
*/
|
*/
|
||||||
function get_comment_time( $format = '', $gmt = false, $translate = true ) {
|
function get_comment_time( $format = '', $gmt = false, $translate = true, $comment_ID = 0 ) {
|
||||||
$comment = get_comment();
|
$comment = get_comment( $comment_ID );
|
||||||
|
|
||||||
|
if ( null === $comment ) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
$comment_date = $gmt ? $comment->comment_date_gmt : $comment->comment_date;
|
$comment_date = $gmt ? $comment->comment_date_gmt : $comment->comment_date;
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.2-alpha-55283';
|
$wp_version = '6.2-alpha-55284';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue