添加过滤器以更改功能的特定部分


add filter to change specific part of function

我正试图从woocommerce中的按钮中删除一个类,该按钮位于wc_cart_functions.php文件中。在wc_add_to_cart_message函数中有一个字符串插入了这个字符串:

<a href="%s" class="button wc-forward">%s</a> %s

function wc_add_to_cart_message( $products, $show_qty = false ) {
$titles = array();
$count  = 0;
if ( ! is_array( $products ) ) {
    $products = array( $products );
    $show_qty = false;
}
if ( ! $show_qty ) {
    $products = array_fill_keys( array_keys( $products ), 1 );
}
foreach ( $products as $product_id => $qty ) {
    $titles[] = ( $qty > 1 ? absint( $qty ) . ' &times; ' : '' ) . sprintf( _x( '&ldquo;%s&rdquo;', 'Item name in quotes', 'woocommerce' ), strip_tags( get_the_title( $product_id ) ) );
    $count += $qty;
}
$titles     = array_filter( $titles );
$added_text = sprintf( _n( '%s has been added to your cart.', '%s have been added to your cart.', $count, 'woocommerce' ), wc_format_list_of_items( $titles ) );
// Output success messages
if ( 'yes' === get_option( 'woocommerce_cart_redirect_after_add' ) ) {
    $return_to = apply_filters( 'woocommerce_continue_shopping_redirect', wc_get_raw_referer() ? wp_validate_redirect( wc_get_raw_referer(), false ) : wc_get_page_permalink( 'shop' ) );
    $message   = sprintf( '<a href="%s" class="button wc-forward">%s</a> %s', esc_url( $return_to ), esc_html__( 'Continue Shopping', 'woocommerce' ), esc_html( $added_text ) );
} else {
    $message   = sprintf( '<a href="%s" class="button wc-forward">%s</a> %s', esc_url( wc_get_page_permalink( 'cart' ) ), esc_html__( 'View Cart', 'woocommerce' ), esc_html( $added_text ) );
}
wc_add_notice( apply_filters( 'wc_add_to_cart_message', $message, $product_id ) );
}

我试图创建一个过滤器,它只会替换特定的字符串,因为它出现了两次,在这两个实例中,我希望类被删除。这似乎不起作用:

add_filter( 'wc_add_to_cart_message', 'add_to_cart_mod');
 function add_to_cart_mod($message) {
    $message = str_replace ( '<a href="%s" class="button wc-forward">%s</a> %s' , '<a href="%s" class="button">%s</a> %s', $message );
 return $message;
}

使用这个过滤器设置,我仍然看到具有相同未更改类的按钮。任何想法吗?

您的过滤器期望找到%s,但这被之前对sprintf的调用所取代:这些%s不再存在了。

您可以尝试使用正则表达式:

$message = preg_replace ('/(<a [^>]+ )class="button wc-forward"/', 
                         '$1class="button"', $message );    

[^>]+部分是指:不包含>的任何字符序列(a标记的结束)。

$1表示:括号之间匹配的内容。比如<a href="http://example.com"

你可以试试:

add_filter( 'wc_add_to_cart_message', 'add_to_cart_mod');
function add_to_cart_mod( $message ) {  
    // Output success messages
    if ( 'yes' === get_option( 'woocommerce_cart_redirect_after_add' ) ) {
        $return_to = apply_filters( 'woocommerce_continue_shopping_redirect', wc_get_raw_referer() ? wp_validate_redirect( wc_get_raw_referer(), false ) : wc_get_page_permalink( 'shop' ) );
        $message   = sprintf( '<a href="%s" class="button">%s</a> %s', esc_url( $return_to ), esc_html__( 'Continue Shopping', 'woocommerce' ), esc_html( $added_text ) );
    } else {
        $message   = sprintf( '<a href="%s" class="button">%s</a> %s', esc_url( wc_get_page_permalink( 'cart' ) ), esc_html__( 'View Cart', 'woocommerce' ), esc_html( $added_text ) );
    }
    return $message;
}