Typecho plugins
Update 2023-01-22
添加 Cloudflare Turnstile 验证工具支持。
Typecho 版本:>= 1.2.0
-
注册 hCaptcha 或者 Cloudflare 账号,在 Sites 菜单栏里点击
New Site
添加一个网站获取Site Key
,点击你的头像 - Settings 获取Secret Key
; -
下载插件,文件夹命名为
CaptchaPlus
上传到 Typecho 网站目录/usr/plugins/
路径下; -
进入网站后台-控制台-插件,找到 CaptchaPlus 点击启用并设置。
-
打开
/usr/themes/
你的主题目录下comments.php
文件,在提交按钮前面/后面插入下面代码:
<?php if (array_key_exists('CaptchaPlus', Typecho_Plugin::export()['activated'])) : CaptchaPlus_Plugin::output(); endif; ?>
- 如果提交评论失败,可能是开启了评论反垃圾保护导致,在网站后台-设置-评论里关闭,或者在主题目录下的
functions.php
文件中找到function themeInit()
函数,里面添加:
$options = Helper::options();
$options -> commentsAntiSpam = false;
在我的博客中查看更详细的介绍。
Typecho 版本:>= 1.2.0
将 Typecho 默认的 Markdown 解析器 Hyperdown 替换为 Parsedown。
-
下载插件,文件夹命名为
Parsedown
上传到 Typecho 网站目录/usr/plugins/
路径下; -
进入网站后台-控制台-插件,找到 Parsedown 点击启用即可,默认会替换文章和评论内容的解析。