0%

如何去除hexo底部强力驱动标记

Hexo博客搭建好后,底部的"由 Hexo & NexT.Mist 强力驱动"的字样属实让人头疼。虽然我爱你,但把你名字纹在大腿大可不必!

方法一:

找到/Blog/themes/next/_config.yml,设置powered为false即可!

1
2
# Powered by Hexo & NexT
powered: false

方法二:

找到Blog\themes\next\layout\_partials下的footer.swig,定位51行,删除footer.powered url这行即可!

1
2
3
4
5
6
7
8
9
{%- if theme.footer.powered %}
<div class="powered-by">
{%- set next_site = 'https://theme-next.org' %}
{%- if theme.scheme !== 'Gemini' %}
{%- set next_site = 'https://' + theme.scheme | lower + '.theme-next.org' %}
{%- endif %}
将此行删除:{{- __('footer.powered', next_url('https://hexo.io', 'Hexo', {class: 'theme-link'}) + ' & ' + next_url(next_site, 'NexT.' + theme.scheme, {class: 'theme-link'})) }}
</div>
{%- endif %}