Make WordPress Core

Changeset 30866


Ignore:
Timestamp:
12/15/2014 05:39:59 PM (10 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: remove Genericons as a dependency from loading the main stylesheet and IE-specific stylesheet. See #30532.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/functions.php

    r29903 r30866  
    235235
    236236    // Load our main stylesheet.
    237     wp_enqueue_style( 'twentyfourteen-style', get_stylesheet_uri(), array( 'genericons' ) );
     237    wp_enqueue_style( 'twentyfourteen-style', get_stylesheet_uri() );
    238238
    239239    // Load the Internet Explorer specific stylesheet.
    240     wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style', 'genericons' ), '20131205' );
     240    wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style' ), '20131205' );
    241241    wp_style_add_data( 'twentyfourteen-ie', 'conditional', 'lt IE 9' );
    242242
Note: See TracChangeset for help on using the changeset viewer.