/
githubmirror
/
gutenberg
Обзор
Документация
Войти
/
githubmirror
/
gutenberg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
lib/block-editor-settings.php
126 строк
5 KB
Matias Ventura
Add custom CSS support for individual block instances (#73959)
23 янв 2026, 06:46
Не верифицирован
23 янв 2026, 06:46
9fea99d
Код
Авторство
О чём код?
<?php /** * Adds settings to the block editor. * * @package gutenberg */ /** * Replaces core 'styles' and '__experimentalFeatures' block editor settings from * wordpress-develop/block-editor.php with the Gutenberg versions. Much of the * code is copied from get_block_editor_settings() in that file. * * This hook should run first as it completely replaces the core settings that * other hooks may need to update. * * Note: The settings that are WP version specific should be handled inside the `compat` directory. * * @param array $settings Existing block editor settings. * * @return array New block editor settings. */ function gutenberg_get_block_editor_settings( $settings ) { $global_styles = array(); $presets = array( array( 'css' => 'variables', '__unstableType' => 'presets', 'isGlobalStyles' => true, ), array( 'css' => 'presets', '__unstableType' => 'presets', 'isGlobalStyles' => true, ), ); foreach ( $presets as $preset_style ) { $actual_css = gutenberg_get_global_stylesheet( array( $preset_style['css'] ) ); if ( '' !== $actual_css ) { $preset_style['css'] = $actual_css; $global_styles[] = $preset_style; } } $block_classes = array( 'css' => 'styles', '__unstableType' => 'theme', 'isGlobalStyles' => true, ); $actual_css = gutenberg_get_global_stylesheet( array( $block_classes['css'] ) ); if ( '' !== $actual_css ) { $block_classes['css'] = $actual_css; $global_styles[] = $block_classes; } // Get any additional css from the customizer and add it before global styles custom CSS. $global_styles[] = array( 'css' => wp_get_custom_css(), '__unstableType' => 'user', 'isGlobalStyles' => false, ); /* * Add the custom CSS as a separate stylesheet so any invalid CSS * entered by users does not break other global styles. */ $global_styles[] = array( 'css' => gutenberg_get_global_stylesheet( array( 'custom-css' ) ), '__unstableType' => 'user', 'isGlobalStyles' => true, ); $settings['styles'] = array_merge( $global_styles, get_block_editor_theme_styles() ); $settings['__experimentalFeatures'] = gutenberg_get_global_settings(); // These settings may need to be updated based on data coming from theme.json sources. if ( isset( $settings['__experimentalFeatures']['color']['palette'] ) ) { $colors_by_origin = $settings['__experimentalFeatures']['color']['palette']; $settings['colors'] = $colors_by_origin['custom'] ?? $colors_by_origin['theme'] ?? $colors_by_origin['default']; } if ( isset( $settings['__experimentalFeatures']['color']['gradients'] ) ) { $gradients_by_origin = $settings['__experimentalFeatures']['color']['gradients']; $settings['gradients'] = $gradients_by_origin['custom'] ?? $gradients_by_origin['theme'] ?? $gradients_by_origin['default']; } if ( isset( $settings['__experimentalFeatures']['typography']['fontSizes'] ) ) { $font_sizes_by_origin = $settings['__experimentalFeatures']['typography']['fontSizes']; $settings['fontSizes'] = $font_sizes_by_origin['custom'] ?? $font_sizes_by_origin['theme'] ?? $font_sizes_by_origin['default']; } if ( isset( $settings['__experimentalFeatures']['color']['custom'] ) ) { $settings['disableCustomColors'] = ! $settings['__experimentalFeatures']['color']['custom']; unset( $settings['__experimentalFeatures']['color']['custom'] ); } if ( isset( $settings['__experimentalFeatures']['color']['customGradient'] ) ) { $settings['disableCustomGradients'] = ! $settings['__experimentalFeatures']['color']['customGradient']; unset( $settings['__experimentalFeatures']['color']['customGradient'] ); } if ( isset( $settings['__experimentalFeatures']['typography']['customFontSize'] ) ) { $settings['disableCustomFontSizes'] = ! $settings['__experimentalFeatures']['typography']['customFontSize']; unset( $settings['__experimentalFeatures']['typography']['customFontSize'] ); } if ( isset( $settings['__experimentalFeatures']['typography']['lineHeight'] ) ) { $settings['enableCustomLineHeight'] = $settings['__experimentalFeatures']['typography']['lineHeight']; unset( $settings['__experimentalFeatures']['typography']['lineHeight'] ); } if ( isset( $settings['__experimentalFeatures']['spacing']['units'] ) ) { $settings['enableCustomUnits'] = $settings['__experimentalFeatures']['spacing']['units']; unset( $settings['__experimentalFeatures']['spacing']['units'] ); } if ( isset( $settings['__experimentalFeatures']['spacing']['padding'] ) ) { $settings['enableCustomSpacing'] = $settings['__experimentalFeatures']['spacing']['padding']; unset( $settings['__experimentalFeatures']['spacing']['padding'] ); } if ( isset( $settings['__experimentalFeatures']['spacing']['customSpacingSize'] ) ) { $settings['disableCustomSpacingSizes'] = ! $settings['__experimentalFeatures']['spacing']['customSpacingSize']; unset( $settings['__experimentalFeatures']['spacing']['customSpacingSize'] ); } if ( isset( $settings['__experimentalFeatures']['spacing']['spacingSizes'] ) ) { $spacing_sizes_by_origin = $settings['__experimentalFeatures']['spacing']['spacingSizes']; $settings['spacingSizes'] = $spacing_sizes_by_origin['custom'] ?? $spacing_sizes_by_origin['theme'] ?? $spacing_sizes_by_origin['default']; } $settings['canEditCSS'] = current_user_can( 'edit_css' ); return $settings; } add_filter( 'block_editor_settings_all', 'gutenberg_get_block_editor_settings', 0 );