Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Tax::get_contentpublicWC 1.0

Content.

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

Хуков нет.

Возвращает

Строку.

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

$Tax = new Tax();
$Tax->get_content();

Код Tax::get_content() WC 10.9.1

public function get_content() {
	return self::can_use_automated_taxes()
		? __(
			'Good news! WooCommerce Tax can automate your sales tax calculations for you.',
			'woocommerce'
		)
		: __(
			'Set your store location and configure tax rate settings.',
			'woocommerce'
		);
}