有些 Typecho 主题没有适配网页标签🏷️小图标,那么我们手动添加上吧。
看主题的 header.php
文件, 把 ico 文件下载到 usr/themes/{theme_name}/favicon.ico
比如本博客的 ico 文件我托管到了 https://image.940304.xyz/i/2022/07/25/62ddf90272176.ico
。
在 header.php 的 <head></head>
标签之间添加上
<link rel="shortcut icon" href="<?php $this->options->themeUrl('favicon.ico'); ?>" type="image/x-icon" />
如果有下面这一行就删掉
<link data-n-head="true" rel="icon" type="image/x-icon" href="/favicon.ico">
保存然后刷新页面即可,无需清浏览器缓存。