WordPress Version: 6.4
/**
* Returns whether the active theme is a block-based theme or not.
*
* @since 5.9.0
*
* @return bool Whether the active theme is a block-based theme or not.
*/
function wp_is_block_theme()
{
return wp_get_theme()->is_block_theme();
}