Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
colibri-page-builder
/
extend-builder
/
//home/puskom/mastur/colibri-page-builder/extend-builder/gutenberg.php
<?php namespace ExtendBuilder; add_action( 'after_setup_theme', function () { $colors_list = get_current_theme_data('colors', array()); $colors = array(); foreach ( $colors_list as $index => $item ) { $colors[] = array( 'name' => sprintf( __( 'Color %d', 'colibri-page-builder' ), $index + 1 ), 'slug' => 'colibri-color-' . ( $index + 1 ), 'color' => $item ); } add_theme_support( 'editor-color-palette', $colors ); }, 40 ); add_action( 'enqueue_block_editor_assets', function(){ $css = get_current_theme_data('css', ''); // move css from body to editor $css = str_replace('body ','.editor-block-list__layout ',$css); wp_add_inline_style( 'wp-block-library',$css ); });