前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >去除更新检测和后台日志

去除更新检测和后台日志

作者头像
季春二九
发布2023-03-22 13:34:29
3230
发布2023-03-22 13:34:29
举报
文章被收录于专栏:季春二九季春二九

Typecho去除官方日志

打开 admin/index.php,找到下面的代码并删除,在 96-105 行。

Typecho去除更新检测

接着找到下面的代码并删除,在 105-147 行。

代码语言:javascript
复制
    $(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');
        }
    });
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Typecho去除官方日志
  • Typecho去除更新检测
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档