投稿画面にフロントのスタイルシート適用

投稿画面にフロントのスタイルシート適用

概要

投稿画面にフロントのスタイルシート適用させて、投稿画面とフロント画面の見た目の差を無くす。

施策

/*--------------------------------------------------------
投稿画面にフロントのスタイルシート適用
--------------------------------------------------------*/
function my_theme_add_editor_styles() {
    add_editor_style( get_template_directory_uri() . '/css/editor.css' );
}
add_action( 'after_setup_theme', 'my_theme_add_editor_styles' );