Add the version string to wp-content.css to avoid tenacious caching woes. see #27320.
Built from https://develop.svn.wordpress.org/trunk@27629 git-svn-id: http://core.svn.wordpress.org/trunk@27472 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bef7f9e75e
commit
6a1f7ca4fe
|
@ -345,13 +345,13 @@ final class _WP_Editors {
|
||||||
$dashicons = includes_url( "css/dashicons$suffix.css?$version" );
|
$dashicons = includes_url( "css/dashicons$suffix.css?$version" );
|
||||||
$mediaelement = includes_url( "js/mediaelement/mediaelementplayer.min.css?$version" );
|
$mediaelement = includes_url( "js/mediaelement/mediaelementplayer.min.css?$version" );
|
||||||
$wpmediaelement = includes_url( "js/mediaelement/wp-mediaelement.css?$version" );
|
$wpmediaelement = includes_url( "js/mediaelement/wp-mediaelement.css?$version" );
|
||||||
|
|
||||||
// WordPress default stylesheet and dashicons
|
// WordPress default stylesheet and dashicons
|
||||||
$mce_css = array(
|
$mce_css = array(
|
||||||
$dashicons,
|
$dashicons,
|
||||||
$mediaelement,
|
$mediaelement,
|
||||||
$wpmediaelement,
|
$wpmediaelement,
|
||||||
self::$baseurl . '/skins/wordpress/wp-content.css'
|
self::$baseurl . '/skins/wordpress/wp-content.css?' . $version
|
||||||
);
|
);
|
||||||
|
|
||||||
// load editor_style.css if the current theme supports it
|
// load editor_style.css if the current theme supports it
|
||||||
|
|
Loading…
Reference in New Issue