storefront 主题是 WooThemes 出品的 WooCommerce 商店主题,我们做了中文版的,所以需要调整下页脚的链接,因为这些主题都是 GPL 授权的,改主题代码和页脚都是允许的,在 wordpress.org 找到了解决方法如下:

将以下代码加入到你的子主题中:
// Remove WooThemes Credit from Footer
add_action( 'init', 'custom_remove_footer_credit', 10 );
function custom_remove_footer_credit () {
remove_action( 'storefront_footer', 'storefront_credit', 20 );
add_action( 'storefront_footer', 'custom_storefront_credit', 20 );
}
function custom_storefront_credit() {
?>
<div class="site-info">
© <?php echo get_bloginfo( 'name' ) . ' ' . date( 'Y' ); ?>
</div><!-- .site-info -->
<?php
}
修改好的效果:

其他文字什么的也可以自己添加。