zibll子比主题5.0 给新发布的文章加上NEW小图标
代码部署
第224行加上
date_default_timezone_set('PRC');
$t1=$post->post_date;
$t2=date("Y-m-d H:i:s");
$diff=(strtotime($t2)-strtotime($t1))/3600;
if($diff<24){echo '<span class="new-icon"></span>';}
else{echo "";}
//开始输出
第二、添加样式
后台主题设置-全局功能-自定义代码-自定义CSS样式插入
/** 修改NEW标志样式902d.com */
.tab-content{
positiON: relative;
}
/** NEW 图标文字版样式 **/
.tab-content .new-icon{
position: absolute;
right: 1px;
display: block;
width: 40px;
height: 40px;
line-height: 20px;
background-image: url(https://www.902d.com/img/new.png);
transform-origin: 0% 0%;
}
阅读剩余
提示:本文最后更新于2024年11月1日,如有错误或者已经失效,请留言告知。
THE END