Typecho网站页脚显示建站时间

2020-07-02T15:29:00

页脚显示站点运行时间

修改主题文件夹下./component/footer.php,第 63 起的代码块修改后如下示(注意保留原作者的版权信息):

<?php
    $copyright = 'Copyright &copy; '. date('Y') .' <a href="'. Mirages::$options->siteUrl .'">'. Mirages::$options->title .'</a>'; if (!Device::isPhone()) {$theme = "";}$theme = (Device::isPhone() ? '': 'Powered by <a href="http://typecho.org" target="_blank">Typecho</a> • ') . 'Theme <a href="https://get233.com/archives/mirages-intro.html" target="_blank">Mirages</a>';
    $runtime = '本站已经奋力挣扎了'.floor((time() - 1502694727)/86400).'天';
    if (Utils::hasValue(Mirages::$options->beian)) {
        $beiAn = "<a href=\"http://beian.miit.gov.cn\" target='_blank'> ".Mirages::$options->beian . "</a>";
        $copyright = "<p>{$copyright}</p><p>{$beiAn} • {$theme}</p><p>{$runtime}</p>";
    } else {
        $copyright = "<p>{$copyright} • {$theme}</p><p>{$runtime}</p>";
    }
?>

[!/]注意修改时间戳

当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »