Woocommerce 滑块回调

Woocommerce 滑块回调,woocommerce,flexslider,Woocommerce,Flexslider,我需要收听幻灯片更改事件,以在更改幻灯片时触发我的自定义函数。我该怎么做?我尝试使用过滤器添加选项,但不起作用 add_filter( 'woocommerce_single_product_carousel_options', 'custom_update_woo_flexslider_options' ); function custom_update_woo_flexslider_options( $options ) { $options['after'] = "fun

我需要收听幻灯片更改事件,以在更改幻灯片时触发我的自定义函数。我该怎么做?我尝试使用过滤器添加选项,但不起作用

add_filter( 'woocommerce_single_product_carousel_options', 'custom_update_woo_flexslider_options' );
function custom_update_woo_flexslider_options( $options ) {
    $options['after'] = "function(){alert('ok')}";
    return $options;
}
有什么建议吗