whitebearcode/typecho-bearsimple
292 更新于2025-07-25 22:07:08

前言

这篇文章长期更新 (如果文章还在的话)。

一、主题使用

1、转圈圈

幻灯片图片使用 透明度图片/svg 会暴露转圈圈:
转圈圈

转圈圈

2、后续更新

子评论添加数量

子评论添加数量

二、插件使用

1、Lopwon_Hub插件的使用

找到主题目录里面的page/post.php

在输出文章前:

<?php echo reEmoPost(ShortCode($this->content,$this,$this->user->hasLogin(),$this->fields->ArticleType)); ?>

添加:

<?php
$content = $this->content;
$content = Typecho_Plugin::factory('Content')->LopwonHub($content);
$this->content = $content;
?>