wc_get_core_supported_themes()WC 2.2

Deprecated from version 3.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.

WooCommerce Core Supported Themes.

No Hooks.

Return

String[].

Usage

wc_get_core_supported_themes();

Changelog

Since 2.2 Introduced.
Deprecated since 3.3.0

wc_get_core_supported_themes() code WC 8.7.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' );
}