Loading...
打开var/Typecho/Common.php,找到下面的代码,大概在939行。$url = $isSecure ? 'https://secure.gravatar.com' : 'http://www.gravatar.com'; 替换为:$url = $isSecure ? 'https://gravatar.loli.net' : 'https://sdn.geekzu.org'; 一些可用的...
在functions.php中加入以下代码/** * 加载时间 * @return bool */ function timer_start() { global $timestart; $mtime = explode( ' ', microtime() ); $timestart = $mtime[1] + $...
在functions.php中加入如下代码:/** * 文章字数统计 * */ function art_count ($cid){ $db=Typecho_Db::get (); $rs=$db->fetchRow ($db->select ('table.contents.text')->from ('table.contents')->where ('tabl...
在functions.php中加入如下代码/** * 阅读次数统计 * */ function get_post_view($archive) { $cid = $archive->cid; $db = Typecho_Db::get(); $prefix = $db->getPrefix(); if (!array_key_exists('view...
打开admin/index.php,找到下面的代码,删除,大概在96-105行。<div class="col-mb-12 col-tb-4" role="complementary"> <section class="latest-link"> <h3><?php _e('官方最新...