/**
*WordPress 在老文章顶部添加提示
*https://www.weixiaoduo.com/old-content-message/
*/
functionBing_old_content_message($content){
$post_age=date(‘Y’)–get_the_time(‘Y’);
if($post_age>1){//一年前的文章显示提示
return‘<p style=”background:#F4F7FF;”> 当前文章已经一年没有更新了,某些内容可能已经不适用于现在。</p>’.$content;
}
return$content;
}
add_filter(‘the_content’,‘Bing_old_content_message’,16);