Php 在手机上使用FlexSlider中的点而不是缩略图

Php 在手机上使用FlexSlider中的点而不是缩略图,php,jquery,wordpress,woocommerce,flexslider,Php,Jquery,Wordpress,Woocommerce,Flexslider,我想更改FlexSlider,使其在库中使用点而不是缩略图。但在桌面上,我想显示缩略图 我找到了一个解决方案,可以使用点或缩略图,但不能在不同的视口中同时使用它们 以下是我如何使用缩略图: add_filter( 'woocommerce_single_product_carousel_options', 'custom_update_woo_flexslider_options' ); function custom_update_woo_flexslider_options( $option

我想更改FlexSlider,使其在库中使用点而不是缩略图。但在桌面上,我想显示缩略图

我找到了一个解决方案,可以使用点或缩略图,但不能在不同的视口中同时使用它们

以下是我如何使用缩略图:

add_filter( 'woocommerce_single_product_carousel_options', 'custom_update_woo_flexslider_options' );
function custom_update_woo_flexslider_options( $options ) {

    $options['controlNav']      = 'thumbnails';
    
    return $options;
}
对于圆点,我将代码改为:

    $options['controlNav']      = true;
但在这种情况下,我必须对所有视口使用其中一个


有什么办法可以两者兼用吗?或者每个视口一个?

您是否尝试使用WordPress条件函数,如:

add_filter( 'woocommerce_single_product_carousel_options', 'custom_update_woo_flexslider_options' );
function custom_update_woo_flexslider_options( $options ) {

    $options['controlNav'] = wp_is_mobile() ? true : 'thumbnails';
    
    return $options;
}

它可以工作…

太好了!非常感谢。我根本不知道这个函数;)