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
}
修改好的效果:

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