wp_should_load_block_editor_scripts_and_styles() WordPress Function

The wp_should_load_block_editor_scripts_and_styles() function is used to determine whether or not the Block Editor scripts and styles should be loaded. This can be useful for plugins that need to disable the Block Editor on certain pages.

wp_should_load_block_editor_scripts_and_styles() #

Checks if the editor scripts and styles for all registered block types should be enqueued on the current screen.


Return

(bool) Whether scripts and styles should be enqueued.


Top ↑

Source

File: wp-includes/script-loader.php

function wp_should_load_block_editor_scripts_and_styles() {
	global $current_screen;

	$is_block_editor_screen = ( $current_screen instanceof WP_Screen ) && $current_screen->is_block_editor();

	/**
	 * Filters the flag that decides whether or not block editor scripts and styles
	 * are going to be enqueued on the current screen.
	 *
	 * @since 5.6.0
	 *
	 * @param bool $is_block_editor_screen Current value of the flag.
	 */
	return apply_filters( 'should_load_block_editor_scripts_and_styles', $is_block_editor_screen );
}


Top ↑

Changelog

Changelog
VersionDescription
5.6.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.