Created
September 26, 2014 14:14
-
-
Save atsea/f994abe0dc50ed4619dc to your computer and use it in GitHub Desktop.
tell WordPress to load the Smoothness theme from Google CDN
This file contains 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
// tell WordPress to load the Smoothness theme from Google CDN | |
$protocol = is_ssl() ? 'https' : 'http'; | |
$url = "$protocol://code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css"; | |
wp_enqueue_style('jquery-ui-smoothness', $url, false, null); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment