]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/twentyfourteen/functions.php
WordPress 4.1-scripts
[autoinstalls/wordpress.git] / wp-content / themes / twentyfourteen / functions.php
index d95d29dce034d360e9c44c8dc5b41d0b6fa1515e..2e66b2e23a1869dc5d978c2f05260564154957d0 100644 (file)
@@ -211,7 +211,11 @@ function twentyfourteen_font_url() {
         * by Lato, translate this to 'off'. Do not translate into your own language.
         */
        if ( 'off' !== _x( 'on', 'Lato font: on or off', 'twentyfourteen' ) ) {
-               $font_url = add_query_arg( 'family', urlencode( 'Lato:300,400,700,900,300italic,400italic,700italic' ), "//fonts.googleapis.com/css" );
+               $query_args = array(
+                       'family' => urlencode( 'Lato:300,400,700,900,300italic,400italic,700italic' ),
+                       'subset' => urlencode( 'latin,latin-ext' ),
+               );
+               $font_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' );
        }
 
        return $font_url;
@@ -230,10 +234,10 @@ function twentyfourteen_scripts() {
        wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
 
        // Load our main stylesheet.
-       wp_enqueue_style( 'twentyfourteen-style', get_stylesheet_uri(), array( 'genericons' ) );
+       wp_enqueue_style( 'twentyfourteen-style', get_stylesheet_uri() );
 
        // Load the Internet Explorer specific stylesheet.
-       wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style', 'genericons' ), '20131205' );
+       wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style' ), '20131205' );
        wp_style_add_data( 'twentyfourteen-ie', 'conditional', 'lt IE 9' );
 
        if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
@@ -501,7 +505,7 @@ require get_template_directory() . '/inc/custom-header.php';
 // Custom template tags for this theme.
 require get_template_directory() . '/inc/template-tags.php';
 
-// Add Theme Customizer functionality.
+// Add Customizer functionality.
 require get_template_directory() . '/inc/customizer.php';
 
 /*