コードを追記します。
/**
* 子テーマの style.css を編集画面に反映
*/
function lightning_child_load_editor_css() {
/**
* こう書くと子テーマ直下の style.css が読み込まれる
*/
add_editor_style( 'style.css' );
}
add_action( 'after_setup_theme', 'lightning_child_load_editor_css' );
この場合、記事編集画面に関係ない部分も記事編集画面で読まれる仕様なので、
新たに editor.css を用意して
/**
* 子テーマの style.css を編集画面に反映
*/
function lightning_child_load_editor_css() {
/**
* こう書くと子テーマ直下の editor.css が読み込まれる
*/
add_editor_style( 'editor.css' );
}
add_action( 'after_setup_theme', 'lightning_child_load_editor_css' );
としたほうが個人的には好みだったりします。