将下面的函数代码加入到主题目录下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="http://wpa.qq.com/msgrd?v=3&uin=550966987&site=qq&menu=yes"><b>傲天社长</b></a>。</div >';
}
echo $custom_content;
}
说明:请自己修改上面有关于本站的信息,改成自己网站信息即可,图标可以用阿里矢量图。
在主题目录zibll/inc/functions/zib-single.php文件中,文章分页函数(子比主题V5.2.1版本(主题更新有可能会有变动)大概是294回车一行代码放在295行,见下图)下面添加下方代码即可。
article_time_update();//文章过期提示
![图片[1]-添加文章更新或过期失效提示-乡野博文](http://www.zau.cn/wp-content/uploads/2022/02/31a49099e6e5-2.png)
CSS代码:(在自定义CSS样式添加下面代码)
/*过期文章提示样式*/
.article-timeout{position:relative; border-radius: 8px; position: relative; margin-bottom: 25px; padding: 10px; background-color: var(--body-bg-color);}
效果图:
![图片[2]-添加文章更新或过期失效提示-乡野博文](http://www.zau.cn/wp-content/uploads/2022/02/31a49099e6e5-3.png)
您阅读这篇文章共花了: 0小时00分00秒
THE END
暂无评论内容