如何为 Storefront 主题修改页脚链接,去掉 Built with Storefront & WooCommerce.

如何为 Storefront 主题修改页脚链接,去掉 Built with Storefront & WooCommerce.

如何删除/自定义 Storefront 主题页脚的 Built with Storefront & WooCommerce. 字样和链接? 过去一段时间为 Storefront designed by WooCommerce. 或者 designed by WooThemes .

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

将以下代码加入到您的子主题 functions.php 文件中:

// 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">
		&copy; <?php echo get_bloginfo( 'name' ) . ' ' . date( 'Y' ); ?>
	</div><!-- .site-info -->
	<?php
}

修改好的效果:

2016-06-26 11.48.15

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


薇晓朵 Storefront 中文版 WooCommerce 主题针对国内用户进行了多项优化,使用更方便省心,购买地址:

Storefront | 店面 商店 网店 官方 WooCommerce 主题

相关推荐

WooCommerce 教程:修复 「过时的 WooCommerce 模板副本」

我们都在那里…WooPanic!我需要做什么?发生了什么事?我的网站是否会破坏?[&...

如何在 WooCommerce 中设置可下载产品?

在之前的课程中,我们通过了「如何配置显示选项」和「如何在WooCommerce中[&...

WooCommerce 教程:[解决] 排序,航运成本 – 从低到高

客户端在购物车页面上有多个运费评级,通过他们的API从FedEx,USPS,U[&h...

WooCommerce 教程:隐藏非管理员的 WP-admin

我今天正在玩自己的结帐设计和UX,而在测试时,我意识到新客户可以在购买后访问WP[&...