Created
May 16, 2012 17:59
-
-
Save chrisguitarguy/2712643 to your computer and use it in GitHub Desktop.
Add an X-UA-Compatible header to WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Force IE Edge | |
Description: Add an X-UA-Compatible header to WordPress | |
Author: Christopher Davis | |
Author URI: http://christopherdavis.me | |
License: GPL2 | |
Copyright 2012 Christopher Davis | |
This program is free software; you can redistribute it and/or modify | |
it under the terms of the GNU General Public License, version 2, as | |
published by the Free Software Foundation. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
GNU General Public License for more details. | |
You should have received a copy of the GNU General Public License | |
along with this program; if not, write to the Free Software | |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
*/ | |
add_filter('wp_headers', 'cdfie_add_header'); | |
/* | |
* Adds a header to WordPress | |
* | |
* @return array Where header => header value | |
*/ | |
function cdfie_add_header($headers) | |
{ | |
$headers['X-UA-Compatible'] = 'IE=edge,chrome=1'; | |
return $headers; | |
} |
How/where to add this file on an existing Wordpress Installation ? Thanks for your answer. David.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, I used to create my system.