【发布时间】:2020-11-25 00:01:46
【问题描述】:
在单个 woocommerce 产品页面上,我正在尝试添加产品库滑块导航,并更正缩略图以正确显示。
我已经为 wc-product-gallery-slider 添加了主题支持如下
<?php
add_action( 'after_setup_theme', 'cws_child_theme_setup' );
function cws_child_theme_setup() {
load_child_theme_textdomain( 'orgafit', get_stylesheet_directory() . '/languages' );
}
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
?>
【问题讨论】:
标签: php wordpress woocommerce slider gallery