WC_Product::add_to_cart_textpublicWC 1.0

Get the add to cart button text.

Method of the class: WC_Product{}

Hooks from the method

Returns

String.

Usage

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

WC_Product::add_to_cart_text() code WC 10.5.0

public function add_to_cart_text() {
	return apply_filters( 'woocommerce_product_add_to_cart_text', __( 'Read more', 'woocommerce' ), $this );
}