Automattic\WooCommerce\Blocks\Templates

OrderConfirmationTemplate::get_template_descriptionpublicWC 1.0

Returns the description of the template.

Method of the class: OrderConfirmationTemplate{}

No Hooks.

Returns

String.

Usage

$OrderConfirmationTemplate = new OrderConfirmationTemplate();
$OrderConfirmationTemplate->get_template_description();

OrderConfirmationTemplate::get_template_description() code WC 9.9.3

public function get_template_description() {
	return __( 'The Order Confirmation template serves as a receipt and confirmation of a successful purchase. It includes a summary of the ordered items, shipping, billing, and totals.', 'woocommerce' );
}