$font_url = urlencode( 'http://fonts.googleapis.com/earlyaccess/nanumpenscript.css' );
add_editor_style( $font_url ) ;
add_action( 'wp_enqueue_scripts', 'wpex_mce_google_fonts_styles' );
이런 방법으로 폰트 추가를 하는데 폰트 추가가 안되네요
admin 글쓰기에서는 폰트 적용이 되고 케이보드에서는 적용이 안되네요
조언 부탁드립니다..
혹시 궁금하실분이 있을까봐 댓글 남깁니다..
function add_editor_style2( $stylesheet = 'editor-style.css' ) {
add_theme_support( 'editor-style' );
global $editor_styles;
$editor_styles = (array) $editor_styles;
$stylesheet = (array) $stylesheet;
if ( is_rtl() ) {
$rtl_stylesheet = str_replace('.css', '-rtl.css', $stylesheet[0]);
$stylesheet[] = $rtl_stylesheet;
}
$editor_styles = array_merge( $editor_styles, $stylesheet );
}
함수를 커스텀 해서 사용했더니 가능하군요...
감사합니다^^