get_comment_time

过滤钩子
apply_filters( 'get_comment_time', $date, $format, $gmt, $translate, $comment )
参数
  • (string|int) $date The comment time, formatted as a date string or Unix timestamp.
    Required:
  • (string) $format PHP date format.
    Required:
  • (bool) $gmt Whether the GMT date is in use.
    Required:
  • (bool) $translate Whether the time is translated.
    Required:
  • (WP_Comment) $comment The comment object.
    Required:
定义位置
相关勾子
get_comment_textget_comment_typeget_comment_dateget_comment_idget_comment_link
相关方法
get_comment_timeget_comment_metaget_comment_dateget_comment_textget_comment_typeget_comment_id
引入
1.5.0
弃用
-

get_comment_time 函数返回评论的创建或最后修改的时间。它需要两个参数:一个时间的格式字符串和一个评论对象。它返回给定评论的指定格式的时间。

过滤返回的注释时间。

return apply_filters( 'get_comment_time', $date, $format, $gmt, $translate, $comment );

常见问题

FAQs
查看更多 >