wc_current_theme_supports_woocommerce_or_fse()WC 6.0.0

Check if the current theme has WooCommerce support or is a FSE theme.

Хуков нет.

Возвращает

true|false.

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

wc_current_theme_supports_woocommerce_or_fse();

Список изменений

С версии 6.0.0 Введена.

Код wc_current_theme_supports_woocommerce_or_fse() WC 8.7.0

function wc_current_theme_supports_woocommerce_or_fse() {
	return (bool) current_theme_supports( 'woocommerce' ) || wc_current_theme_is_fse_theme();
}