Ben Dwyer 4 년 전
부모
커밋
a9de7223c6
1개의 변경된 파일8개의 추가작업 그리고 4개의 파일을 삭제
  1. 8 4
      penscratch-2/functions.php

+ 8 - 4
penscratch-2/functions.php

@@ -127,10 +127,14 @@ if ( ! function_exists( 'penscratch_2_setup' ) ) :
 		);
 
 		add_theme_support( 'editor-styles' );
-		add_editor_style( array(
-			get_theme_file_uri( '/css/editor-blocks.css' ),
-			penscratch_2_fonts_url()
-		) );
+		add_editor_style(
+			array(
+				'style.css',
+				'/css/blocks.css',
+				'/css/editor-blocks.css',
+				penscratch_2_fonts_url(),
+			)
+		);
 	}
 endif; // penscratch_2_setup
 add_action( 'after_setup_theme', 'penscratch_2_setup' );