wc_current_theme_is_fse_theme()
Deprecated since 9.9.0. It is no longer supported and may be removed in future releases. Use wp_is_block_theme() instead.
Check if the current theme is a block theme.
No Hooks.
Returns
true|false.
Usage
wc_current_theme_is_fse_theme();
Changelog
| Since 6.0.0 | Introduced. |
| Deprecated since 9.9.0 | Use wp_is_block_theme() instead. |
wc_current_theme_is_fse_theme() wc current theme is fse theme code WC 10.3.5
function wc_current_theme_is_fse_theme() {
wc_deprecated_function( __FUNCTION__, '9.9.0', 'wp_is_block_theme' );
return wp_is_block_theme();
}