将其放入插件中:
add_filter(\'template\', function($template){
// could be IE
if(preg_match(\'/MSIE [1-9]/i\', $_SERVER[\'HTTP_USER_AGENT\']))
return \'your_ie_theme_name\';
// other
return $template;
});
正如您所知,通过PHP进行浏览器检测并不是那么准确。有一个
get_browser()
PHP可用的函数,但不确定是否更好。