diff --git a/src/wp-content/themes/twentyfourteen/editor-style.css b/src/wp-content/themes/twentyfourteen/css/editor-style.css similarity index 100% rename from src/wp-content/themes/twentyfourteen/editor-style.css rename to src/wp-content/themes/twentyfourteen/css/editor-style.css diff --git a/src/wp-content/themes/twentyfourteen/ie.css b/src/wp-content/themes/twentyfourteen/css/ie.css similarity index 100% rename from src/wp-content/themes/twentyfourteen/ie.css rename to src/wp-content/themes/twentyfourteen/css/ie.css diff --git a/src/wp-content/themes/twentyfourteen/functions.php b/src/wp-content/themes/twentyfourteen/functions.php index d3eb1638f8..9a21cd2d6a 100644 --- a/src/wp-content/themes/twentyfourteen/functions.php +++ b/src/wp-content/themes/twentyfourteen/functions.php @@ -59,7 +59,7 @@ function twentyfourteen_setup() { load_theme_textdomain( 'twentyfourteen', get_template_directory() . '/languages' ); // This theme styles the visual editor to resemble the theme style. - add_editor_style( array( 'editor-style.css', twentyfourteen_font_url() ) ); + add_editor_style( array( 'css/editor-style.css', twentyfourteen_font_url() ) ); // Add RSS feed links to for posts and comments. add_theme_support( 'automatic-feed-links' ); @@ -227,7 +227,7 @@ function twentyfourteen_scripts() { wp_enqueue_style( 'twentyfourteen-style', get_stylesheet_uri() ); // Load the Internet Explorer specific stylesheet. - wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/ie.css', array( 'twentyfourteen-style' ), '20131110' ); + wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style' ), '20131110' ); wp_style_add_data( 'twentyfourteen-ie', 'conditional', 'lt IE 9' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) )