diff --git a/wp-includes/media.php b/wp-includes/media.php
index 24c370769d..4a97f445ef 100644
--- a/wp-includes/media.php
+++ b/wp-includes/media.php
@@ -1557,9 +1557,12 @@ function img_caption_shortcode( $attr, $content = null ) {
}
if ( ! empty( $atts['id'] ) ) {
- $atts['id'] = 'id="' . esc_attr( sanitize_html_class( $atts['id'] ) ) . '" ';
+ $att_id = esc_attr( sanitize_html_class( $atts['id'] ) );
+ $atts['id'] = 'id="' . $att_id . '" ';
}
+ $caption_id = 'caption-' . str_replace( '_', '-', $att_id );
+
$class = trim( 'wp-caption ' . $atts['align'] . ' ' . $atts['class'] );
$html5 = current_theme_supports( 'html5', 'caption' );
@@ -1590,13 +1593,15 @@ function img_caption_shortcode( $attr, $content = null ) {
if ( $html5 ) {
$html = sprintf(
- '%s
%s
', + $caption_id, $atts['caption'] ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 72138c14a1..376e5d6631 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42690'; +$wp_version = '5.0-alpha-42691'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.