【发布时间】:2018-06-05 15:55:10
【问题描述】:
我正在尝试从使用 WooCommerce 的自定义主题网站中删除图像缩放。这是我尝试在我的 functions.php 文件中添加的内容:
add_action( 'after_setup_theme', 'remove_pgz_theme_support', 100 );
function remove_pgz_theme_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
}
还有这个
add_action( 'wp', 'remove_pgz_theme_support', 20 );
function remove_pgz_theme_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
}
我花了一些时间在谷歌上搜索,但答案总是建议尝试上述方法。
【问题讨论】:
标签: php wordpress woocommerce content-management-system