Skip to content

Instantly share code, notes, and snippets.

@stevegrunwell
Created March 20, 2012 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stevegrunwell/2140325 to your computer and use it in GitHub Desktop.
Save stevegrunwell/2140325 to your computer and use it in GitHub Desktop.
Example usage of conditional comments with wp_enqueue_script() (WordPress)
<?php
wp_enqueue_style('ie7-fixes', get_bloginfo('template_url') . '/css/ie7.css', false, '', 'screen');
global $wp_styles;
$wp_styles->add_data('ie7-fixes', 'conditional', 'lte IE 7');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment