wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_is_block_theme › WordPress Function

Since5.9.0
Deprecatedn/a
wp_is_block_theme ( No parameters )
Returns:
  • (bool) Whether the active theme is a block-based theme or not.
Defined at:
Codex:

Returns whether the active theme is a block-based theme or not.



Source

function wp_is_block_theme() {
	if ( empty( $GLOBALS['wp_theme_directories'] ) ) {
		_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before the theme directory is registered.' ), '6.8.0' );
		return false;
	}

	return wp_get_theme()->is_block_theme();
}