慕婉清6462132
下面的代码可以解决这个问题(基于woocommerce_template_loop_add_to_cart()原始函数代码):add_action('init', 'remove_add_to_cart_function_callback' );function remove_add_to_cart_function_callback() { remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); add_action( 'woocommerce_after_shop_loop_item', 'custom_template_loop_add_to_cart', 10 );}if ( ! function_exists( 'woocommerce_template_loop_add_to_cart' ) ) { function custom_template_loop_add_to_cart( $args = array() ) { global $product; if ( $product && is_cart() ) { $defaults = array( 'quantity' => 1, 'class' => implode( ' ', array_filter( array( 'button', 'product_type_' . $product->get_type(), $product->is_purchasable() && $product->is_in_stock() ? 'add_to_cart_button' : '', $product->supports( 'ajax_add_to_cart' ) && $product->is_purchasable() && $product->is_in_stock() ? 'ajax_add_to_cart' : '', ) ) ), 'attributes' => array( 'data-product_id' => $product->get_id(), 'data-product_sku' => $product->get_sku(), 'aria-label' => $product->add_to_cart_description(), 'rel' => 'nofollow', ), ); $args = apply_filters( 'woocommerce_loop_add_to_cart_args', wp_parse_args( $args, $defaults ), $product ); if ( isset( $args['attributes']['aria-label'] ) ) { $args['attributes']['aria-label'] = wp_strip_all_tags( $args['attributes']['aria-label'] ); } wc_get_template( 'loop/add-to-cart.php', $args ); } }}代码位于活动子主题(或活动主题)的functions.php 文件中。经过测试并有效。