试了好多方法都没法在argon主题上美美添加备案号, 终于不得不对源码下手了.
下载插件WP文件管理器
有一说一这个东西真好用.
打开主题所在路径
默认路径应该就是这样的了. 我们要找的themes文件夹.
然后点击搜索, 找到footer.php 或类似的用于保存页脚设置的文件.
修改页脚内容
页脚文本内容一般都放在footer标签里面, 所以ctrl+f搜索一下标签位置. 然后在里面添加备案号超链接(并且修改主题版权标识)
<footer id="footer" class="site-footer card shadow-sm border-0">
<?php
echo get_option('argon_footer_html');
?>
<div> <a href="https://johnnnnngr.fun" target="_blank"><strong>I offer you an accord.</strong></a><?php if (get_option('argon_hide_footer_author') != 'true') {echo " By solstice23"; }?></div>
<div> <a href="https://beian.miit.gov.cn/" style="font-size:8px; text-align:center; line-height=0.4;">浙ICP备2024084696号-1</a>
</footer>
大功告成!