按月归档:2012-01

让IE6用户显示默认主题

IE6的能力缺陷会使你好好的主题或者网页变的面目全非,而你又不肯放弃这部分读者,那就让IE6用户显示默认主题吧!

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;
}
Continue

好久没有更新了…

博客好久没有更新了,过年的时候由于服务器到期,暂时把博客放在国外了,由于速度慢,也就没有更新,过完年上班的第二天由于一些原因一直在家休养,最近终于可以动动了,前天和朋友去看了《洛杉矶之战》,今天早上把博客再次搬家,顺便安装了wp-t-wap插件,没事的时候可以用手机发布文章了。 Continue