{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

给Emlog模板首页添加今日文章更新统计数量方法教程

为你的Emlog程序模板首页添加显示今日文章更新多少资源 和统计共更新多少资源统计 超过三天没发布文章会显示 三天没更新 十天也是哦 可以随时提醒你是不是要更新

你想在什么地方 显示代码就放到哪里 一般都是放在网站首页的头部一般是log_list.php文件,不同模板可能位置不同,log_list.php不是那就是index了,再跑也跑不了其它文件。

<article class="excerpt-minic excerpt-minic-index" data-aos="fade-up">
<center><p><?php 
$Log_Model = new Log_Model();
$today = strtotime(date('Y-m-d'));//今天凌晨时间戳
$threeday = strtotime(date('Y-m-d',strtotime('-3 day')));//3天前凌晨时间戳
$tenday = strtotime(date('Y-m-d',strtotime('-10 day')));//10天前凌晨时间戳
$today_sql = "and date>$today";
$today_num = $Log_Model->getLogNum('n', $today_sql);
$threeday_sql = "and date>$threeday";
$threeday_num = $Log_Model->getLogNum('n', $threeday_sql);
$tenday_sql = "and date>$tenday";
$tenday_num = $Log_Model->getLogNum('n', $tenday_sql);
if($tenday_num=='0'){echo '这博客已经废了 都10几天了 没有更新内容     |     ';}
elseif($threeday_num=='0'){echo '这博客快要荒废了 连续3天都没有更新文章了   |    ';}
elseif($today_num=='0'){echo '今日站长很懒 一篇文章都没更新   |   ';}
else{echo ' <b>今日已更新<b style="color:red">'.$today_num.'</b>个资源   |   </b> ';}
?><b>本站共分享了<b style="color:red"><?php echo $sta_cache['lognum'];?></b>个资源</b></p>
</center>
      </article>


爱资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:给Emlog模板首页添加今日文章更新统计数量方法教程
喜欢 () 分享 (0)