WordPress时间格式设置为几分钟、几小时之前
通常情况下WordPress时间格式为“年-月-日”的格式,有的网站的时间格式是“本文章发布于几分钟、几小时之前”。使用WordPress建网站时也可以将WordPress时间格式设置为几分钟、几小时之前。
方法/步骤
- 在自己使用的Wordpress模板添加以下的模板函数。
/*几个小时前发布 */
function timeago( $ptime ) {
date_default_timezone_set ('ETC/GMT');
$ptime = strtotime($ptime);
$etime = time() - $ptime;
if($etime < 1) return '刚刚';
$interval = array (
12 * 30 * 24 * 60 * 60 => '年前 ('.date('Y-m-d', $ptime).')',
30 * 24 * 60 * 60 => '个月前 ('.date('m-d', $ptime).')',
7 * 24 * 60 * 60 => '周前 ('.date('m-d', $ptime).')',
24 * 60 * 60 => '天前',
60 * 60 => '小时前',
60 => '分钟前',
1 => '秒前'
);
foreach ($interval as $secs => $str) {
$d = $etime / $secs;
if ($d >= 1) {
$r = round($d);
return $r . $str;
}
};
} - 使用以下的调用标签来调用时间,这样时间的格式就为几分钟、几小时之前格式了。
<?php echo timeago(get_gmt_from_date(get_the_time('Y-m-d G:i:s'))); ?>
- 评论发布时间格式修改使用方法:把原先显示时间的代码(如:)改为以下代码即可:
<?php echo timeago(get_gmt_from_date(get_comment_date('Y-m-d G:i:s'))); ?>