svn で取ってくればおっけ。
$ svn co http://core.svn.wordpress.org/trunk/wp-content/themes/twentythirteen/
svn で取ってくればおっけ。
$ svn co http://core.svn.wordpress.org/trunk/wp-content/themes/twentythirteen/
なんか Vista Chrome だと、うまく表示されないみたいなので
子テーマの functions.php に以下を追記
add_action('wp_enqueue_scripts', function(){
wp_dequeue_style('twentytwelve-fonts');
}, 11);
PHP 5.2 な人は
add_action('wp_enqueue_scripts',
create_function('', "wp_dequeue_style('twentytwelve-fonts');"),
11);
追記:
ja.mo 変えるのでも良いみたい
add_filter('template', 'default_ie');
add_filter('option_template', 'default_ie');
add_filter('option_stylesheet', 'default_ie');
function default_ie($theme) {
if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6') !== false)
$theme = 'default';
return $theme;
}
This snippet will force IE6 users to view the default template leaving your design viewable by users with modern browsers only, thus saving time on IE6 bug fixing.
This following snippet is added to functions.php so remember to backup first.
via Forcing A Different Theme For IE6 Users | WPZine