效果演示
将下面的函数代码加入到主题目录下 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= ' <h1 class="wp-block-zibllblock-biaoti title-theme" id="wznav_999">温馨提示:</h1> <div class="article-timeout" style="font-size:20px;"><B> ?温馨提示:</B>本文最后更新于<code style="background-color: rgba(253,153,153,.2);">'. $updated_date . '</code>,某些文章具有时效性,若有错误或已失效,请在下方<a href="#comment" style="color:#ff3c98;">留言</a>或联系<a target="_blank" title="狐狸" href="http://wpa.qq.com/msgrd?v=3&uin=89385889&site=qq&menu=yes" style="color:#ff3c98;"><b>狐狸</b></a>。</div >'; } echo $custom_content;}
在主题目录zibll/inc/functions/zib-single.php文件中,文章分页函数(大概是322行,因为我的代码有改动,所有不确定行数,见下图)下面添加下方代码即可。
article_time_update();//文章过期提示
在自定义CSS样式添加下面代码
第二种样式
1.将下面的 PHP 代码加入到主题目录下:themes/zibll/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=97538110&site=qq&menu=yes"><b>背时狐狸</b></a>。</div >';
}
echo $custom_content;
}
2.在主题目录themes/zibll/inc/functions/zib-single.php 文件中,文章分页函数(没有修改的话就是308 行)添加下方代码即可。主题目录themes/zibll/template/single-dosc.php 文件里改是没有用的!
article_time_update();//文章过期提示
3.在自定义 CSS 样式添加下面代码
© 版权声明
1. 资源都是经过站长或作者收集测试修改后发布分享。如若转载请在文内以超链形式注明狐狸库文章出处,谢谢合作!
2. 本站除原创内容,其余所有内容均收集自互联网,仅限用于学习和研究目的,本站不对其内容的合法性承担任何责任。如有版权内容,请通知我们或作者删除,其版权均归原作者所有,本站虽力求保存原有版权信息,但因众多资源经多次转载,已无法确定其真实来源,或已将原有信息丢失,所以敬请原作者谅解!
3. 本站用户所发布的一切资源内容不代表本站立场,并不代表本站赞同其观点和对其真实性负责,若您对本站所载资源作品版权归属存有异议,请留言附说明联系邮箱,我们将在第一时间予以处理 ,同时向您表示歉意!为尊重作者版权,请购买原版作品,支持您喜欢的作者,谢谢!
4. 本站一律禁止以任何方式发布或转载任何违法的相关信息,访客如有发现请立即向站长举报;本站资源文件大多存储在云盘,如发现链接或图片失效,请联系作者或站长及时更新。
THE END
请登录后查看评论内容