From da311e953ef05f197b81ee2f4666686de74c3e10 Mon Sep 17 00:00:00 2001 From: Johan Nielsen Date: Wed, 21 Mar 2018 20:08:02 +0100 Subject: [PATCH] include minified css The gulp fix for minify also minifies custom-editor-style.css. Fixed to include the minified version --- inc/editor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/editor.php b/inc/editor.php index 4949a43..2d4e339 100644 --- a/inc/editor.php +++ b/inc/editor.php @@ -9,7 +9,7 @@ * Registers an editor stylesheet for the theme. */ function understrap_wpdocs_theme_add_editor_styles() { - add_editor_style( 'css/custom-editor-style.css' ); + add_editor_style( 'css/custom-editor-style.min.css' ); } add_action( 'admin_init', 'understrap_wpdocs_theme_add_editor_styles' );