typecho文章内容失效提醒

warning: 这篇文章距离上次修改已过1468天,其中的内容可能已经有所变动。

typecho文章内容失效提醒。


提示效果

用的是上一篇文章警告提示的样式

提示效果提示效果


修改方法

修改typecho主题的post.php文件,在需要提醒的位置添加以下内容.

<!--设置需要提醒的时间-->
<?php $halfyear = 3600 * 24 * 30 * 6; ?>
<!--计算文章距离上次修改的时间-->
<?php $lostTime = time() - $this->modified; ?>
<!--判断是否需要提醒-->
<?php if ($lostTime > $halfyear): ?>
    <!--提醒样式开始-->
    <div class="hint hint-warning">
        <span class="glyphicon glyphicon-question-sign hint-warning-icon" aria-hidden="true"></span><span class="sr-only">warning:</span>
        这篇文章距离上次修改已过<?php echo floor($lostTime/86400); ?>天,其中的信息可能已经有所发展或是发生改变。
    </div>
    <!--提醒样式结束-->
<?php endif; ?>

评论已关闭