Skip to content

Instantly share code, notes, and snippets.

@brycejacobson
Created September 17, 2013 18:51
Show Gist options
  • Save brycejacobson/6598954 to your computer and use it in GitHub Desktop.
Save brycejacobson/6598954 to your computer and use it in GitHub Desktop.
WordPress ie8 Conditional CSS
<?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