在编辑文章页面加上标签列表,点击填入标签栏.方便快速添加文章标签代码来自于泽泽社长的插件tagshelperTypecho_Plugin::factory('admin/write-post.php')->bottom = array('tagshelper', 'tagslist');
class tagshelper{
...
代码
Typecho代码
开启GZIP可以用来加快网站的打开速度 要如何开启GZIP压缩呢?找到网站根目录下的index.php文件,直接在<?php下面加入以下代码ob_start('ob_gzhandler');即可..
介绍创建一个随机阅读的独立页面演示https://typecho.team/random.html实现<?php
/**
* 随机阅读
*
* @package custom
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$db = Typecho_Db::get();
// 统计符合条件的文章总数
$co...
在主题functions.php中插入/**
* 页面加载时间
*/
function timer_start() {
global $timestart;
$mtime = explode( ' ', microtime() );
$timestart = $mtime[1] + $mtime[0];
return true;
}
...
/***
* 在线状态
*/
function get_last_login($user){
$user = '1';
$now = time();
$db = Typecho_Db::get();
$prefix = $db->getPrefix();
$row = $db->fetchRow(...