WordPress文章发布时间格式显示几天前/几分钟前
看厌了Wordpress一成不变的文章发布时间格式吗?想让时间格式显示x天前发布吗?嗯,各人有各人的喜好,不过wp自学笔记还是比较喜欢几分钟前、几天前的文章格式。
下面分享WordPress文章发布时间格式显示几天前/几分钟前的教程,希望大家喜欢:
核心代码
function Bing_filter_time() { global $post ; $to = time(); $from = get_the_time('U') ; $diff = (int) abs($to - $from); if ($diff <= 3600) { $mins = round($diff / 60); if ($mins <= 1) { $mins = 1; } $time = sprintf(_n('{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}s分钟', '{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}s分钟', $mins), $mins) . __('前' , 'Bing'); } else if (($diff <= 86400) && ($diff > 3600)) { $hours = round($diff / 3600); if ($hours <= 1) { $hours = 1; } $time = sprintf(_n('{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}s小时', '{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}s小时', $hours), $hours) . __('前' , 'Bing'); } elseif ($diff >= 86400) { $days = round($diff / 86400); if ($days <= 1) { $days = 1; $time = sprintf(_n('{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}s天', '{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}s天', $days), $days) . __('前' , 'Bing'); } elseif ($days > 29) { $time = get_the_time(get_option('date_format')); } else { $time = sprintf(_n('{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}s天', '{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}s天', $days), $days) . __('前' , 'Bing'); } } return $time;}add_filter('the_time','Bing_filter_time');
使用方法
<?php Bing_filter_time() ?>
如果在1小时内,会显示XX分钟前;如果在24小时内,会显示XX小时前;如果在7天内,会显示XX天前;如果超过了7天,则会显示默认的时间。
扫码关注wpwp自学笔记
精选优质免费WordPress主题模板,分享最新WordPress实用建站教程!
记住我们的网址:ztJun.com
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END