给memos添加umami统计 2024年3月15日 浪子 3 umami的部署请参见https://blog.memos.ee/archives/195.html把以下代码添加到自定义代码中// umami analytics function umamiAnalytics() { const uma… 阅读全文 0 条评论
memos自定义CSS:标签样式、字体大小、选项卡隐藏 2024年3月15日 浪子 17 实测在0.20.1版本有效/* 修改特殊字体颜色 */ .text-blue-600 { --tw-text-opacity: 1; color: rgb(11 96 176 / var(--tw-text-opacity)); } /* … 阅读全文 3 条评论
实现Typecho全站总字数统计 2024年3月15日 浪子 3 在主题的functions.php中最后一行加入以下代码/* * 全站字数 */ function allwords() { $chars = 0; $db = Typecho_Db::get(); $select = $db ->s… 阅读全文 0 条评论