Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks
Tax::get_title()
Title.
Method of the class: Tax{}
No Hooks.
Return
String
.
Usage
$Tax = new Tax(); $Tax->get_title();
Tax::get_title() Tax::get title code WC 8.3.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' ); }