分类 it技术 下的文章

慢慢折腾,慢慢更新。好多内容也是摘抄的网络的~

头像无法显示问题解决方案

网站根目录找到config.inc.php
插入这段代码
/* 更换头像源 /
/*define('__TYPECHO_GRAVATAR_PREFIX__', 'https://dn-qiniu-avatar.qbox.me/avatar/');/
define('__TYPECHO_GRAVATAR_PREFIX__', 'https://cravatar.cn/avatar/');

目录导航插件

PostToc

修改文字大小

style.css中找到

body {
  font-size: 95%;
}

typecho设置文章摘要的方法

点此进入

归档页面

JustArchives

字数统计

统计插件

友情链接模版(插件)

links

侧边栏标签云

sidebar.php中添加

    <section class="widget">
<h2 class="widget-title"><?php _e('标签'); ?></h2>
<ul class="widget-list" style="display: flex; flex-wrap: wrap; padding: 0; list-style: none;">
    <?php $this->widget('Widget_Metas_Tag_Cloud', 'ignoreZeroCount=1&limit=28')->to($tags); ?>
    <?php while($tags->next()): ?>
    <li style="margin-right: 10px;"><a href="<?php $tags->permalink(); ?>" class="size-<?php $tags->split(5, 10, 20, 30); ?>"><?php $tags->name(); ?></a></li>
    <?php endwhile; ?>
</ul>
   </section>