Skip to content

Instantly share code, notes, and snippets.

@miya0001
Last active August 29, 2015 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miya0001/10449520 to your computer and use it in GitHub Desktop.
Save miya0001/10449520 to your computer and use it in GitHub Desktop.
WordPress 3.8以前のバージョンでIE11を使った時にビジュアルエディターが不具合を起こすときの対処法
<?php
add_action( 'admin_init', 'my_admin_init');
function my_admin_init(){
header('X-UA-Compatible: IE=9');
// header('X-UA-Compatible: IE=10'); // 使ってるプラグインによってはie10のほうがいいかも?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment