wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



comment_time › WordPress Function

Od0.71
Przestarzałyn/a
comment_time ( $format = '', $comment_id = 0 )
Parametry: (2)
  • (string) $format Optional. PHP time format. Defaults to the 'time_format' option.
    Wymagane: Nie
    Domyślny: (puste)
  • (int|WP_Comment) $comment_id Optional. WP_Comment or ID of the comment for which to print the time. Default current comment.
    Wymagane: Nie
    Domyślny:
Zdefiniowane na:
Codex:
Dziennik zmian:
  • 6.2.0

Displays the comment time of the current comment.



Źródło

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