WP_Customize_Widgets::should_load_block_editor_scripts_and_styles( bool $is_block_editor_screen ): bool

In this article

Tells the script loader to load the scripts and styles of custom blocks if the widgets block editor is enabled.

Parameters

$is_block_editor_screenboolrequired
Current decision about loading block assets.

Return

bool Filtered decision about loading block assets.

Source

public function should_load_block_editor_scripts_and_styles( $is_block_editor_screen ) {
	if ( wp_use_widgets_block_editor() ) {
		return true;
	}

	return $is_block_editor_screen;
}

Changelog

VersionDescription
5.8.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.