我申请了✮萌ICP备20251199号✮。。。需要在页脚添加
萌ICP备20251199号
但是我找不到地方呀。。
还好 https://finicounter.eu.org/ 这个项目提供了一个hexo next主题在页脚添加信息的方法可以作为参考:
在Hexo根目录的 scripts/ 中添加新文件 totalpageview.js 即可:
1 2 3
| hexo.extend.filter.register('theme_inject', function(injects) { injects.footer.raw('totalpageview', '<div><span><a href="https://finicounter.eu.org/" target="_blank">Total Pageview:</a></span><span id="finicount_views" style="display:inline;padding-left:5px;"></span><div> <script async src="//finicounter.eu.org/finicounter.js"></script>', {}, {cache: false}); });
|
所以 只需要在scripts/里面把萌备案和totalpageview.js整合在一起,就能并排出现在页脚了。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| hexo.extend.filter.register('theme_inject', function(injects) { injects.footer.raw('footer_combined', ` <div style="text-align:center; font-size: 14px;"> <span> <a href="https://finicounter.eu.org/" target="_blank">Total Pageview:</a> <span id="finicount_views" style="display:inline;padding-left:5px;"></span> </span> <span style="margin-left: 20px;"> <a href="https://icp.gov.moe/?keyword=20251199" target="_blank">萌ICP备20251199号</a> </span> <script async src="//finicounter.eu.org/finicounter.js"></script> </div> `, {}, { cache: false }); });
|