/**

    *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);