Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Tax::get_content()publicWC 1.0

Content.

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

Хуков нет.

Возвращает

Строку.

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

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

Код Tax::get_content() WC 8.7.0

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'
		);
}