Twenty Fifteen: correct stylesheet dependencies.
Props ocean90, fixes #30532. Built from https://develop.svn.wordpress.org/trunk@30692 git-svn-id: http://core.svn.wordpress.org/trunk@30682 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4bdf9961d4
commit
c9c02be354
|
@ -213,10 +213,10 @@ function twentyfifteen_scripts() {
|
||||||
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.2' );
|
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.2' );
|
||||||
|
|
||||||
// Load our main stylesheet.
|
// Load our main stylesheet.
|
||||||
wp_enqueue_style( 'twentyfifteen-style', get_stylesheet_uri() );
|
wp_enqueue_style( 'twentyfifteen-style', get_stylesheet_uri(), array( 'twentyfifteen-fonts', 'genericons' ) );
|
||||||
|
|
||||||
// Load the Internet Explorer specific stylesheet.
|
// Load the Internet Explorer specific stylesheet.
|
||||||
wp_enqueue_style( 'twentyfifteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfifteen-style', 'genericons' ), '20141010' );
|
wp_enqueue_style( 'twentyfifteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfifteen-style' ), '20141010' );
|
||||||
wp_style_add_data( 'twentyfifteen-ie', 'conditional', 'lt IE 9' );
|
wp_style_add_data( 'twentyfifteen-ie', 'conditional', 'lt IE 9' );
|
||||||
|
|
||||||
// Load the Internet Explorer 7 specific stylesheet.
|
// Load the Internet Explorer 7 specific stylesheet.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.1-beta2-30691';
|
$wp_version = '4.1-beta2-30692';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue