Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Tax::get_title()publicWC 1.0

Title.

Method of the class: Tax{}

No Hooks.

Return

String.

Usage

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

Tax::get_title() code WC 8.7.0

public function get_title() {
	if ( $this->get_parent_option( 'use_completed_title' ) === true ) {
		if ( $this->is_complete() ) {
			return __( 'You added tax rates', 'woocommerce' );
		}
		return __( 'Add tax rates', 'woocommerce' );
	}
	return __( 'Set up tax rates', 'woocommerce' );
}