最近在做项目的时候遇到一个小需求,当文章内容有更新的时候需要有一个醒目的提醒。稍微思考了一下,WordPress 是有记录更新时间的,只要对比发布时间和更新时间,然后在做一个限定就可以完美实现了 WordPress 文章更新提示了。
把下面代码加入到 functions.php 中,
global $post;
$punish_time = get_the_date(‘U’);
$modified_time = get_the_modified_date(‘U’);
$time = time();
if( ( $modified_time > $punish_time) && ( $time – $modified_time < 3600*24*7 ) )
return true;
}
functionis_modified(){ global$post; $punish_time=get_the_date(‘U’); $modified_time=get_the_modified_date(‘U’); $time=time(); if(($modified_time>$punish_time)&&($time–$modified_time<3600*24*7) ) returntrue; } |
然后在 loop 里调用
<?phpif(is_modified()):?> 本文内容有更新 <?phpendif;?> |
如果有更新,则输出你提示就可以了。