wp_is_block_theme(): boolean
Returns whether the active theme is a block-based theme or not.
Return
boolean Whether the active theme is a block-based theme or not.
Source
File: wp-includes/theme.php
.
View all references
function wp_is_block_theme() {
return wp_get_theme()->is_block_theme();
}
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |