wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_is_block_theme › WordPress Function

Seit5.9.0
Veraltetn/v
wp_is_block_theme ( Keine Parameter )
Gibt zurück:
  • (bool) Whether the active theme is a block-based theme or not.
Definiert in:
Codex:

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



Quellcode

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();
}