From 1d7205891b03f3ab6bf273b5c367b9ac36f53ac9 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Mon, 19 Jan 2015 16:19:32 -0600 Subject: [PATCH] Fix editor style path --- lib/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/init.php b/lib/init.php index 50f69fd..45cd711 100644 --- a/lib/init.php +++ b/lib/init.php @@ -35,7 +35,7 @@ function setup() { add_theme_support('html5', ['caption', 'comment-form', 'comment-list']); // Tell the TinyMCE editor to use a custom stylesheet - add_editor_style('/dist/css/editor-style.css'); + add_editor_style('/dist/styles/editor-style.css'); } add_action('after_setup_theme', __NAMESPACE__ . '\\setup');