wc_get_core_supported_themes()WC 2.2

Deprecated since 3.3.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

WooCommerce Core Supported Themes.

No Hooks.

Returns

String[].

Usage

wc_get_core_supported_themes();

Changelog

Since 2.2 Introduced.
Deprecated since 3.3.0

wc_get_core_supported_themes() code WC 10.5.0

function wc_get_core_supported_themes() {
	wc_deprecated_function( 'wc_get_core_supported_themes()', '3.3' );
	return array( 'twentyseventeen', 'twentysixteen', 'twentyfifteen', 'twentyfourteen', 'twentythirteen', 'twentyeleven', 'twentytwelve', 'twentyten' );
}