Automattic\WooCommerce\Blocks\Templates

CartTemplate::get_template_title()publicWC 1.0

Returns the title of the template.

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

Хуков нет.

Возвращает

Строку.

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

$CartTemplate = new CartTemplate();
$CartTemplate->get_template_title();

Код CartTemplate::get_template_title() WC 9.8.5

public function get_template_title() {
	return _x( 'Page: Cart', 'Template name', 'woocommerce' );
}