Created
September 17, 2013 18:51
-
-
Save brycejacobson/6598954 to your computer and use it in GitHub Desktop.
WordPress ie8 Conditional CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* IE8 condital stylesheet | |
add_action( 'wp_enqueue_scripts', 'print_my_styles' ); | |
function print_my_styles() { | |
global $wp_styles; | |
wp_enqueue_style( 'ie8', get_stylesheet_directory_uri() . '/ie8.css' ); | |
$wp_styles->add_data( 'ie8', 'conditional', 'lt IE 9' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment