私は同じ問題を抱えており、リストを作成するたびにコピーしていません。エディターはコードを追加します。
テキスト
リストのテキストに。
どうすればこれを取り除くことができますか?
その投稿で自分に合った解決策を見つけました:
http://wordpress.org/support/topic/strange-behaviour-making-lists-in-the-visual-editor
子テーマを使用する場合は、この関数を functions.php ファイルに追加するだけです:
/**
* I want to use the basic 2012 theme but don't want TinyMCE to create
* unwanted HTML. By removing editor-style.css from the $editor_styles
* global, this code effectively undoes the call to add_editor_style()
*/
add_action( 'after_setup_theme', 'foobar_setup', 11 );
function foobar_setup() {
global $editor_styles;
$editor_styles = array();
}