Automattic\WooCommerce\Admin\Features

Onboarding::get_theme_data()public staticWC 1.0

Deprecated from version 6.3.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Get theme data used in onboarding theme browser.

Method of the class: Onboarding{}

No Hooks.

Return

Array.

Usage

$result = Onboarding::get_theme_data( $theme );
$theme(WP_Theme) (required)
Theme to gather data from.

Changelog

Deprecated since 6.3.0

Onboarding::get_theme_data() code WC 8.7.0

public static function get_theme_data( $theme ) {
	wc_deprecated_function( 'get_theme_data', '6.3', '\Automattic\WooCommerce\Internal\Admin\OnboardingThemes::get_theme_data()' );
	return \Automattic\WooCommerce\Internal\Admin\Onboarding\OnboardingThemes::get_theme_data();
}