📌  相关文章
📜  woocommerce 选择选项文本 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:09.899000             🧑  作者: Mango

代码示例1
add_filter( 'woocommerce_product_add_to_cart_text', function( $text ) {
    global $product;
    if ( $product->is_type( 'variable' ) ) {
        $text = $product->is_purchasable() ? __( 'Custom options text', 'woocommerce' ) : __( 'Read more', 'woocommerce' );
    }
    return $text;
}, 10 );