소스 검색

Added WP Gutenberg custom stylesheet support

tags/0.9.0
Alej 5 년 전
부모
커밋
3584fae0b5
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      vue-theme/functions.php

+ 4
- 0
vue-theme/functions.php 파일 보기

170
 // Add featured image support
170
 // Add featured image support
171
 function craft_post_thumbnails() { add_theme_support( 'post-thumbnails' ); }
171
 function craft_post_thumbnails() { add_theme_support( 'post-thumbnails' ); }
172
 add_action( 'after_setup_theme', 'craft_post_thumbnails' );
172
 add_action( 'after_setup_theme', 'craft_post_thumbnails' );
173
+
174
+// Gutenberg custom stylesheet for editor
175
+add_theme_support('editor-styles');
176
+add_editor_style( 'editor-style.css' );

Loading…
취소
저장