Typecho 去除后台官方最新日志教程
前言:
我们经常在打开 Typecho 后台的时候总是需要等待官方日志加载完才能进行其他操作,但是这样很耽误我们的时间。
所以我们可以在系统源码中去把下面代码去除,可以提升不少访问速度。
教程:
打开系统源码 admin/index.php,找到下面的代码删除就可以了,在 96-105 行。
代码:
<div class="col-mb-12 col-tb-4" role="complementary">
<section class="latest-link">
<h3><?php _e('官方最新日志'); ?></h3>
<div id="typecho-message">
<ul>
<li><?php _e('读取中...'); ?></li>
</ul>
</div>
</section>
</div>
<section class="latest-link">
<h3><?php _e('官方最新日志'); ?></h3>
<div id="typecho-message">
<ul>
<li><?php _e('读取中...'); ?></li>
</ul>
</div>
</section>
</div>
共有 0 条评论