zl程序教程

您现在的位置是:首页 >  其他

当前栏目

WordPress 技巧:如何把时间显示成“xxx前”格式

WordPress 如何 技巧 时间 显示 格式 xxx
2023-06-13 09:18:33 时间

在微博中,时间的格式都是显示成:20秒前,1小时前,3天前这样的格式,其实 WordPress 也有一个函数可以把时间显示成这样的格式,这个函数就是:human_time_diff,它有两个参数,一个是 from,一个是 to,就是比较的两个时间戳。

比如要日志的发表时间要改成:

<?php echo human_time_diff(get_the_time('U'), current_time('timestamp')) . ' ago'; ?>

而留言改成:

<?php echo human_time_diff(get_comment_time('U'), current_time('timestamp')) . ' ago'; ?>