Loading...
在functions.php中加入以下代码/** * 加载时间 * @return bool */ function timer_start() { global $timestart; $mtime = explode( ' ', microtime() ); $timestart = $mtime[1] + $...
在functions.php中加入如下代码/** * 阅读次数统计 * */ function get_post_view($archive) { $cid = $archive->cid; $db = Typecho_Db::get(); $prefix = $db->getPrefix(); if (!array_key_exists('view...
在functions.php中加入如下代码:/** * 文章字数统计 * */ function art_count ($cid){ $db=Typecho_Db::get (); $rs=$db->fetchRow ($db->select ('table.contents.text')->from ('table.contents')->where ('tabl...
打开admin/index.php,找到下面的代码,删除,大概在96-105行。<div class="col-mb-12 col-tb-4" role="complementary"> <section class="latest-link"> <h3><?php _e('官方最新...
文章页面代码<?php if($this->user->hasLogin()):?> <a href="<?php $this->options->adminUrl(); ?>write-post.php?cid=<?php echo $this->cid;?>">编辑</a> <?php e...