コード内容：エディタースタイルに対応させるコード例
コードの記述先：functions.php
-------------------------------------------------------
<?php
function theme_setup(){
    add_editor_style( 'original-editor-style.css' );
}
add_action( 'after_setup_theme', 'theme_setup' );
?>
-------------------------------------------------------