Skip to content

Instantly share code, notes, and snippets.

@chrisguitarguy
Created May 16, 2012 17:59
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save chrisguitarguy/2712643 to your computer and use it in GitHub Desktop.
Add an X-UA-Compatible header to WordPress
<?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;
}
@szepeviktor
Copy link

please consider
if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))

@iLenTheme
Copy link

Thanks, I used to create my system.

@davidbouche
Copy link

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