Automattic\WooCommerce\Blocks\Templates

ProductCategoryTemplate::get_template_description()publicWC 1.0

Returns the description of the template.

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

Хуков нет.

Возвращает

Строку.

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

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

Код ProductCategoryTemplate::get_template_description() WC 9.5.1

public function get_template_description() {
	return __( 'Displays products filtered by a category.', 'woocommerce' );
}