Loading... ## 一.去除官方日志获取 打开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> ``` ## 二.去除更新检测 还是在admin/index.php中,找到一下代码,删除。(大约在105-147行) ``` <script> $(document).ready(function () { var ul = $('#typecho-message ul'), cache = window.sessionStorage, html = cache ? cache.getItem('feed') : '', update = cache ? cache.getItem('update') : ''; if (!!html) { ul.html(html); } else { html = ''; $.get('<?php $options->index('/action/ajax?do=feed'); ?>', function (o) { for (var i = 0; i < o.length; i ++) { var item = o[i]; html += '<li><span>' + item.date + '</span> <a href="' + item.link + '" target="_blank">' + item.title + '</a></li>'; } ul.html(html); cache.setItem('feed', html); }, 'json'); } function applyUpdate(update) { if (update.available) { $('<div class="update-check"><p>' + '<?php _e('您当前使用的版本是 %s'); ?>'.replace('%s', update.current) + '<br />' + '<strong><a href="' + update.link + '" target="_blank">' + '<?php _e('官方最新版本是 %s'); ?>'.replace('%s', update.latest) + '</a></strong></p></div>') .appendTo('.welcome-board').effect('highlight'); } } if (!!update) { applyUpdate($.parseJSON(update)); } else { update = ''; $.get('<?php $options->index('/action/ajax?do=checkVersion'); ?>', function (o, status, resp) { applyUpdate(o); cache.setItem('update', resp.responseText); }, 'json'); } }); </script> ``` 保存后刷新后台即可 最后修改:2023 年 05 月 17 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏