mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Media: Convert concatenation in img_caption_shortcode()
to sprintf()
for clarity.
See #34595. Built from https://develop.svn.wordpress.org/trunk@42690 git-svn-id: http://core.svn.wordpress.org/trunk@42518 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7a8e4bcb1b
commit
8df00f0354
@ -1589,11 +1589,29 @@ function img_caption_shortcode( $attr, $content = null ) {
|
||||
}
|
||||
|
||||
if ( $html5 ) {
|
||||
$html = '<figure ' . $atts['id'] . $style . 'class="' . esc_attr( $class ) . '">'
|
||||
. do_shortcode( $content ) . '<figcaption class="wp-caption-text">' . $atts['caption'] . '</figcaption></figure>';
|
||||
$html = sprintf(
|
||||
'<figure %s%sclass="%s">%s%s</figure>',
|
||||
$atts['id'],
|
||||
$style,
|
||||
esc_attr( $class ),
|
||||
do_shortcode( $content ),
|
||||
sprintf(
|
||||
'<figcaption class="wp-caption-text">%s</figcaption>',
|
||||
$atts['caption']
|
||||
)
|
||||
);
|
||||
} else {
|
||||
$html = '<div ' . $atts['id'] . $style . 'class="' . esc_attr( $class ) . '">'
|
||||
. do_shortcode( $content ) . '<p class="wp-caption-text">' . $atts['caption'] . '</p></div>';
|
||||
$html = sprintf(
|
||||
'<div %s%sclass="%s">%s%s</div>',
|
||||
$atts['id'],
|
||||
$style,
|
||||
esc_attr( $class ),
|
||||
do_shortcode( $content ),
|
||||
sprintf(
|
||||
'<p class="wp-caption-text">%s</p>',
|
||||
$atts['caption']
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return $html;
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-42689';
|
||||
$wp_version = '5.0-alpha-42690';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user