From 69d25efc4a1550df9aac80423da1ad080a26e525 Mon Sep 17 00:00:00 2001 From: Julien Melissas Date: Thu, 15 Oct 2015 11:38:17 -0400 Subject: [PATCH] Added note about tinymce file, per @aumo's request (https://github.com/JulienMelissas/sage/commit/5a621210db943b90aa7c6a92a7908882b96c1beb#commitcomment-13791685) --- lib/setup.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/setup.php b/lib/setup.php index 992e0a3..b9f962d 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -44,7 +44,8 @@ function setup() { // http://codex.wordpress.org/Function_Reference/add_theme_support#HTML5 add_theme_support('html5', ['caption', 'comment-form', 'comment-list', 'gallery', 'search-form']); - // Custom stylesheet for visual editor + // Use main stylesheet for visual editor + // To add custom styles edit /assets/styles/layouts/_tinymce.scss add_editor_style(Assets\asset_path('styles/main.css')); } add_action('after_setup_theme', __NAMESPACE__ . '\\setup');