子比主题美化-文章底部添加文章更新或过期失效提示

教程

第一步:将下面的函数代码加入到主题目录下functions.php文件中

//文章过期提示
function article_time_update() {
    date_default_timezone_set('PRC');
    $newdate=time();
    $updated_date = get_the_modified_time('Y-m-d H:i:s');
    $updatetime=strtotime($updated_date);
    $custom_content = '';
    if ( $newdate > $updatetime+86400) {
    $custom_content= '<div class="article-timeout"><strong><i class="fa fa-bell" aria-hidden="true"></i> 温馨提示:</strong>本文最后更新于<code>'. $updated_date . '</code>,某些文章具有时效性,若有错误或已失效,请在下方<a href="#comment">留言</a>或联系<a target="_blank" title="飞鸟资源库" href="https://wpa.qq.com/msgrd?v=3&uin=728305399&site=qq&menu=yes"><b>飞鸟</b></a>。</div >';
    }
        echo $custom_content;
    }
//<a href="https://www.feiniaoku.com/tag/%e6%96%87%e7%ab%a0" title="更多关于 文章 的文章-飞鸟资源库" target="_blank">文章</a>过期提示结束
温馨提示:本文最后更新于2025-11-29 12:25:09,某些文章具有时效性,若有错误或已失效,请在下方留言或联系飞鸟信使
© 版权声明
THE END
喜欢就支持一下吧
点赞14 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容