wp_should_load_block_editor_scripts_and_styles()WP 5.6.0

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

Хуки из функции

Возвращает

true|false. Whether scripts and styles should be enqueued.

Использование

wp_should_load_block_editor_scripts_and_styles();

Заметки

  • Global. WP_Screen. $current_screen WordPress current screen object.

Список изменений

С версии 5.6.0 Введена.

Код wp_should_load_block_editor_scripts_and_styles() WP 6.5.2

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