Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

StoreCreation::get_title()publicWC 1.0

Title.

Method of the class: StoreCreation{}

No Hooks.

Return

String.

Usage

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

StoreCreation::get_title() code WC 8.7.0

public function get_title() {
	/* translators: Store name */
	return sprintf( __( 'You created %s', 'woocommerce' ), get_bloginfo( 'name' ) );
}