woocommerce_loop_add_to_cart_link
为了这个。您可以在函数.php你的主题是:
add_filter( 'woocommerce_loop_add_to_cart_link', 'custom_add_to_cart_button', 10, 2 );
function custom_add_to_cart_button($button,$product) {
// Do not change the button for variable products
if( $product->is_type('variable') ) return $button;
$buttontext = __( "SELECT OPTIONS", "woocommerce" ); // your button text
// replace the button to be a link to the product detail page
return '<a class="button" href="' . $product->get_permalink() . '">' . $buttontext . '</a>';
}