Automattic\WooCommerce\Blocks\Templates

ProductFiltersTemplate::get_template_description()publicWC 1.0

Returns the description of the template.

Method of the class: ProductFiltersTemplate{}

No Hooks.

Return

String.

Usage

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

ProductFiltersTemplate::get_template_description() code WC 9.4.2

public function get_template_description() {
	return __(
		'This is the template part for the product filters displayed on different pages across your store.',
		'woocommerce'
	);
}