Skip to content

Instantly share code, notes, and snippets.

View jleei's full-sized avatar

JLee jleei

  • Remote
View GitHub Profile
@jleei
jleei / functions.php
Created February 21, 2016 18:02 — forked from wpscholar/functions.php
Enqueueing IE conditional stylesheets in WordPress the right way
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_my_styles' );
function enqueue_my_styles() {
global $wp_styles;
// Load the main stylesheet
wp_enqueue_style( 'my-theme', get_stylesheet_uri() );