WC_Tracker::get_theme_info
Get the current theme info, theme name and version.
Method of the class: WC_Tracker{}
No Hooks.
Returns
Array.
Usage
$result = WC_Tracker::get_theme_info();
WC_Tracker::get_theme_info() WC Tracker::get theme info code WC 10.5.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( wp_is_block_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,
);
}