Typecho 彩色标签云
下面是彩色标签云代码,可以添加到需要的地方。 12345678<?php Typecho_Widget::widget('Widget_Metas_Tag_Cloud')->to($tags); ?><?php if($tags->have()): ?><?php while ($tags->next()): ?><a style="color:rgb(<?php echo(rand(0,255)); ?>,<?php echo(rand(0,255)); ?>,<?php echo(rand(0,255)); ?>)" href="<?php $tags->permalink();?>"><?php $tags->name(); ?></a><?php endwhile; ?><?php endif; ?>
Typecho 文章摘要
编辑主题目录文件 index.php,archive.php 在两个文件中查找: 1$this->content('......'); 替换成 1$this->excerpt(180, '...'); 即可!
Typecho 开启 Gzip
修改站点跟目录 index.php,在其中查找。 1234if (!@include_once 'config.inc.php') { file_exists('./install.php') ? header('Location: install.php') : print('Missing Config File'); exit;} 添加如下内容到下一行。 12/** 开启gzip压缩 */ob_start('ob_gzhandler');