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

517 ℃

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>

WordPress评论相关功能介绍

WordPress如何显示当前文章的评论个数

wordpress如何获取下个评论的链接

wordpress如何显示下个评论链接

wordpress技巧如何显示当前评论的摘要

标签: comment_date, wordpress评论

上面是“wordpress技巧如何显示当前评论的日期”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_4792.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

vuejs怎么结合pinia插件
wordpress想让某个链接不进行跳转代码示例
js方法传参参数有空格报错解决方法(escape、unescape)
php参数传递失败的常见原因及解决方法!
2个数组根据相同key合并成新的数组(es5、es6两种