私は自作のテーマを更新していますが、すでにいくつかの変更を簡単に行っています。
私のテーマのスタイルシートは、次のように、functions.php ファイルの wp_enqueue_style を介してページ ヘッドに追加されます。
function gridded_enqueue_styles() {
wp_enqueue_style( 'themever-style', get_stylesheet_uri() );
wp_enqueue_style( 'bootstrap-css', get_stylesheet_directory_uri() .'/css/bootstrap.min.css' );
}
add_action('wp_enqueue_scripts', 'gridded_enqueue_styles');
スタイルシートが読み込まれ、ページがレンダリングされ、すべて問題ありません。
次に、次のような IE 条件付きコメントを含むスタイルシートをいくつか追加する必要があります。
<!--[if IE 7]>
<link rel='stylesheet' href='http://theme_path/css/ie7.css' type='text/css' media='all' />
<![endif]-->
出来ますか?
前もって感謝します。