wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



comment_time › WordPress Function

Seit0.71
Veraltetn/v
comment_time ( $format = '', $comment_id = 0 )
Parameter: (2)
  • (string) $format Optional. PHP time format. Defaults to the 'time_format' option.
    Erforderlich: Nein
    Standard: (leer)
  • (int|WP_Comment) $comment_id Optional. WP_Comment or ID of the comment for which to print the time. Default current comment.
    Erforderlich: Nein
    Standard:
Definiert in:
Codex:
Changelog:
  • 6.2.0

Displays the comment time of the current comment.



Quellcode

function comment_time( $format = '', $comment_id = 0 ) {
	echo get_comment_time( $format, false, true, $comment_id );
}