Automattic\WooCommerce\Blocks\Templates

ProductFiltersTemplate::get_template_description()publicWC 1.0

Returns the description of the template.

Метод класса: ProductFiltersTemplate{}

Хуков нет.

Возвращает

Строку.

Использование

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

Код ProductFiltersTemplate::get_template_description() WC 9.3.3

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