Return to Snippet

Revision: 34684
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