WC_Tracker::get_theme_info()public staticWC 1.0

Get the current theme info, theme name and version.

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

Хуков нет.

Возвращает

Массив.

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

$result = WC_Tracker::get_theme_info();

Код WC_Tracker::get_theme_info() WC 8.7.0

public static function get_theme_info() {
	$theme_data           = wp_get_theme();
	$theme_child_theme    = wc_bool_to_string( is_child_theme() );
	$theme_wc_support     = wc_bool_to_string( current_theme_supports( 'woocommerce' ) );
	$theme_is_block_theme = wc_bool_to_string( wc_current_theme_is_fse_theme() );

	return array(
		'name'        => $theme_data->Name, // @phpcs:ignore
		'version'     => $theme_data->Version, // @phpcs:ignore
		'child_theme' => $theme_child_theme,
		'wc_support'  => $theme_wc_support,
		'block_theme' => $theme_is_block_theme,
	);
}