워드프레스 에디터 테마 초기화

개요

어느 날 블로그에 글을 쓰고있는데 폰트가 굴림체로 통일되서 나오기 시작했다. 무엇이 문제인지 싶어서 여러가지를 확인하고 있었는데 에디터 스타일이 테마의 스타일을 덮어쓰고 있다는 사실을 알게되었다.

여기저기 찾아본 결과 테마랑 에디터 테마랑 일치시키기 위한 과정에서 오류가 난 것으로 보였고, 해당 기능을 리셋시키고 다시 테마랑 동기화시키는 기능을 function.php에 추가한 결과 지금은 잘 나오고 있다.

add_action( 'enqueue_block_editor_assets', 'my_enqueue_block_editor_assets', 102);
function my_enqueue_block_editor_assets () {
    wp_deregister_style('wp-reset-editor-styles');
    wp_register_style( 'wp-reset-editor-styles', get_stylesheet_directory_uri() . '/stylesheets/my-custom-stylesheet.css', false, '1.0', 'all' );
}
0 replies

Leave a Reply

Want to join the discussion?
Feel free to contribute!

Leave a Reply

Your email address will not be published. Required fields are marked *