WC_Product::single_add_to_cart_textpublicWC 1.0

Get the add to cart button text for the single page.

Method of the class: WC_Product{}

Returns

String.

Usage

$WC_Product = new WC_Product();
$WC_Product->single_add_to_cart_text();

WC_Product::single_add_to_cart_text() code WC 10.7.0

public function single_add_to_cart_text() {
	return apply_filters( 'woocommerce_product_single_add_to_cart_text', __( 'Add to cart', 'woocommerce' ), $this );
}