Wordpressを4.0にバージョンアップするとCKEditorが対応しておらず、エラーが出て使えなくなる不具合がありましたが、CKEditorの新バージョンが「CKEditor for WordPress」が4.0.0.1→4.4.4にアップデートして改善されました。
またアップデートしなくてもfunction.phpに下記の記述を追加するの形で暫定的に対応する方法もあるようです。
[php]
// Deregister editor-expand as it breaks CKEditor integration
function custom_deregister_editor_expand() {
wp_deregister_script('editor-expand');
}
add_action( 'admin_init', 'custom_deregister_editor_expand' );[/php]