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链接做了进去。也可以修改成自己想要的。