WC_Product::add_to_cart_description()

Get the add to cart button text description – used in aria tags.


Description Description


Return Return

(string)


Top ↑

Source Source

File: includes/abstracts/abstract-wc-product.php

	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 );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.