0
1

More than 5 years have passed since last update.

WP4.3のビジュアルエディタにてIE11で日本語入力に不具合がある件

Last updated at Posted at 2015-12-16

[結論] WP4.4で解消された模様なのでバージョアップすればOK。
WordPress › フォーラム » IE11とTinyMCEとの相性 https://ja.forums.wordpress.org/topic/156974

バージョンアップ以外の対処方法は下記を参照。
WordPress › フォーラム » TinyMCE Advanced リンクの挿入が出来ない https://ja.forums.wordpress.org/topic/31124

コアを書き換えるとWPのアップデートで上書きされてしまうので下記のスニペットで対応した方が良いかな。

// 管理画面のヘッダにX-UA-Compatibleの指定を追加
function add_xua_admin_head() {
    echo "\n".’<meta http-equiv="X-UA-Compatible" content="IE=8, chrome=1">'."\n";
}
add_action( 'admin_head', 'add_xua_admin_head' );
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1