首先以admin账号登录控制台
依次点击“外观”——“Single Theme主题”——“编辑当前外观”
找到footer.php文件
找到以下代码
<section class="sub-footer">
<p>©
<?php echo date('Y'); ?>
<a href="
<?php $this -> options -> siteUrl(); ?>">
<?php $this -> options -> title(); ?>
</a>. All Rights Reserved. Theme By
<a href="https://github.com/Dreamer-Paul/Single" target="_blank" rel="nofollow">Single</a>.
</p>
</section>
代替成
<section class="sub-footer">
<p>©
<?php echo date('Y'); ?>
<a href="
<?php $this -> options -> siteUrl(); ?>">
<?php $this -> options -> title(); ?>
</a>• ICP
<a href="https://beian.miit.gov.cn/" target="_blank">ICP备案号</a>• Powered by
<a href="http://typecho.org" target="_blank">Typecho</a>• Theme
<a href="https://github.com/Dreamer-Paul/Single" target="_blank" rel="nofollow">Single</a>
</p>
</section>
ICP备案号换成自己的备案号即可
没有评论