From f8cdb53e1e7cb8ecbf9417e9d833bae1f542dc11 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Wed, 1 Oct 2025 12:36:37 +0200 Subject: [PATCH] CHORE Enqueuing parent editor stylesheet --- includes/init.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/includes/init.php b/includes/init.php index f1fc2f7..184d68c 100644 --- a/includes/init.php +++ b/includes/init.php @@ -33,10 +33,13 @@ function dynamiques_setup() add_theme_support('align-wide'); add_theme_support('wp-block-styles'); + + /* ---------------------------------------------------------------- + ##### EDITOR SPECIFIC STYLES + ------------------------------------------------------------------*/ add_theme_support('editor-styles'); + add_editor_style(get_template_directory_uri() . '/css/editor-style.css'); add_editor_style('css/editor-style.css'); - add_theme_support('widgets'); - // add_post_type_support( 'page', 'excerpt' ); } add_action('after_setup_theme', 'dynamiques_setup');