WC_Product::add_to_cart_description()
Get the add to cart button text description - used in aria tags.
Method of the class: WC_Product{}
Hooks from the method
Return
String
.
Usage
$WC_Product = new WC_Product(); $WC_Product->add_to_cart_description();
Changelog
Since 3.3.0 | Introduced. |
WC_Product::add_to_cart_description() WC Product::add to cart description code WC 9.7.1
public function add_to_cart_description() { /* translators: %s: Product title */ return apply_filters( 'woocommerce_product_add_to_cart_description', sprintf( __( 'Read more about “%s”', 'woocommerce' ), $this->get_name() ), $this ); }