diff --git wp-includes/theme.php wp-includes/theme.php
index 4e5f63b..29f9d7a 100644
--- wp-includes/theme.php
+++ wp-includes/theme.php
@@ -1825,27 +1825,38 @@ function wp_update_custom_css_post( $css, $args = array() ) {
  * It is a better option to use that class and add any RTL styles to the main stylesheet.
  *
  * @since 3.0.0
+ * @since 5.0.0 Added the optional `$version` parameter.
  *
  * @global array $editor_styles
  *
  * @param array|string $stylesheet Optional. Stylesheet name or array thereof, relative to theme root.
  * 	                               Defaults to 'editor-style.css'
+ * @param string       $version    Optional. The version number attached to this stylesheet.
  */
-function add_editor_style( $stylesheet = 'editor-style.css' ) {
+function add_editor_style( $stylesheet = 'editor-style.css', $version = '' ) {
 	add_theme_support( 'editor-style' );
 
-	if ( ! is_admin() )
+	if ( ! is_admin() ) {
 		return;
+	}
 
 	global $editor_styles;
+	global $wp_version;
+
+	if ( '' == $version ) {
+		$version = $wp_version;
+	}
+
 	$editor_styles = (array) $editor_styles;
 	$stylesheet    = (array) $stylesheet;
+	$version       = (array) $version;
+
 	if ( is_rtl() ) {
 		$rtl_stylesheet = str_replace('.css', '-rtl.css', $stylesheet[0]);
 		$stylesheet[] = $rtl_stylesheet;
 	}
 
-	$editor_styles = array_merge( $editor_styles, $stylesheet );
+	$editor_styles = array_merge( $editor_styles, $stylesheet, $version );
 }
 
 /**
