wordpress技巧如何显示当前评论的日期

2024年10月16日 建站教程

wordpress建站中,如何利用comment_date函数显示当前评论的日期,下面web建站小编给大家简单介绍一下!

函数原型:

comment_date( string $format = '', int|WP_Comment $comment_id )

参数说明:

$format, 默认使用WordPress后台【设置->常规->日期格式】处的配置。

函数源码:

function comment_date( $format = '', $comment_id = 0 ) {
  echo get_comment_date( $format, $comment_id );
}

调用方法:

<div>Comment posted on <?php comment_date('n-j-Y'); ?></div>

本文链接:http://so.lmcjl.com/news/15495/

展开阅读全文
相关内容