Revision: 34684
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at October 27, 2010 04:28 by crispunk
Initial Code
//Set Default Template on IE 6
add_filter('template', 'serve_default_to_iesix');
add_filter('option_template', 'serve_default_to_iesix');
add_filter('option_stylesheet', 'serve_default_to_iesix');
function serve_default_to_iesix($theme) {
if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6') !== false)
$theme = 'default';
return $theme;
}
Initial URL
http://www.plan-zero.org
Initial Description
Initial Title
Display a different theme on IE6 - Wordpress
Initial Tags
wordpress, ie6
Initial Language
PHP