wc_current_theme_is_fse_theme()WC 6.0.0

Устарела с версии 9.9.0. Больше не поддерживается и может быть удалена. Используйте wp_is_block_theme().

Check if the current theme is a block theme.

Хуков нет.

Возвращает

true|false.

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

wc_current_theme_is_fse_theme();

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

С версии 6.0.0 Введена.
Устарела с 9.9.0 Use wp_is_block_theme() instead.

Код wc_current_theme_is_fse_theme() WC 10.9.4

function wc_current_theme_is_fse_theme() {
	wc_deprecated_function( __FUNCTION__, '9.9.0', 'wp_is_block_theme' );
	return wp_is_block_theme();
}