修改wordpress自带主题的页脚文字

wordpress后台–〉外观–〉编辑–〉主题页脚(footer.php)

找到如下代码

<span class="site-title"><a href="<?php%20echo%20esc_url(%20home_url(%20'/'%20)%20);%20?>" rel="home"><?php bloginfo( 'name' ); ?></a></span>
<a href=”<?php echo esc_url( __( ‘http://wordpress.org/’, ‘twentyXXX’ ) ); ?>” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentyXXX’ ); ?>”><?php printf( __( ‘Proudly powered by %s’, ‘twentyXXX’ ), ‘WordPress’ ); ?></a>

第一行会自动读取网站标题

第二行显示的是自豪的采用wordpress,可以替换为:

Copyright © 2016 sinovale.com. All Rights Reserved. | <a href="%20https://blog.sinovale.com/sitemap.xml">sitemap</a>

我这里的例子是做了版权声明和把sitemap链接做了进去。也可以修改成自己想要的。

0 0 投票数
文章评分
订阅评论
提醒

0 评论
内联反馈
查看所有评论