wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_comment_time › WordPress Function

Depuis1.5.0
Dépréciéen/a
get_comment_time ( $format = '', $gmt = false, $translate = true, $comment_id = 0 )
Paramètres: (4)
  • (string) $format Optional. PHP date format. Defaults to the 'time_format' option.
    Requis: Non
    Défaut: (vide)
  • (bool) $gmt Optional. Whether to use the GMT date. Default false.
    Requis: Non
    Défaut: false
  • (bool) $translate Optional. Whether to translate the time (for use in feeds). Default true.
    Requis: Non
    Défaut: true
  • (int|WP_Comment) $comment_id Optional. WP_Comment or ID of the comment for which to get the time. Default current comment.
    Requis: Non
    Défaut:
Retourne:
  • (string) The formatted time.
Défini(e) dans:
Codex:
Changelog:
  • 6.2.0

Retrieves the comment time of the current comment.



Source

function get_comment_time( $format = '', $gmt = false, $translate = true, $comment_id = 0 ) {
	$comment = get_comment( $comment_id );

	if ( null === $comment ) {
		return '';
	}

	$comment_date = $gmt ? $comment->comment_date_gmt : $comment->comment_date;

	$_format = ! empty( $format ) ? $format : get_option( 'time_format' );

	$comment_time = mysql2date( $_format, $comment_date, $translate );

	/**
	 * Filters the returned comment time.
	 *
	 * @since 1.5.0
	 *
	 * @param string|int $comment_time The comment time, formatted as a date string or Unix timestamp.
	 * @param string     $format       PHP date format.
	 * @param bool       $gmt          Whether the GMT date is in use.
	 * @param bool       $translate    Whether the time is translated.
	 * @param WP_Comment $comment      The comment object.
	 */
	return apply_filters( 'get_comment_time', $comment_time, $format, $gmt, $translate, $comment );
}