Media: Remove unwanted quotation marks for playlist template.
This changeset improves the way quotation marks are handled in the Playlist template. Follow-up to [27239], [33643 ]. Props hvar, Presskopp, sabernhardt, james-roberts, arrasel403, abidhasan112, robinwpdeveloper, costdev, mukesh27. Fixes #50865. Built from https://develop.svn.wordpress.org/trunk@55251 git-svn-id: http://core.svn.wordpress.org/trunk@54784 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4c9154723a
commit
47ca4980d8
|
@ -2638,10 +2638,14 @@ function wp_underscore_playlist_templates() {
|
|||
<# } #>
|
||||
<div class="wp-playlist-caption">
|
||||
<span class="wp-playlist-item-meta wp-playlist-item-title">
|
||||
<?php
|
||||
/* translators: %s: Playlist item title. */
|
||||
printf( _x( '“%s”', 'playlist item title' ), '{{ data.title }}' );
|
||||
?>
|
||||
<# if ( data.meta.album || data.meta.artist ) { #>
|
||||
<?php
|
||||
/* translators: %s: Playlist item title. */
|
||||
printf( _x( '“%s”', 'playlist item title' ), '{{ data.title }}' );
|
||||
?>
|
||||
<# } else { #>
|
||||
{{ data.title }}
|
||||
<# } #>
|
||||
</span>
|
||||
<# if ( data.meta.album ) { #><span class="wp-playlist-item-meta wp-playlist-item-album">{{ data.meta.album }}</span><# } #>
|
||||
<# if ( data.meta.artist ) { #><span class="wp-playlist-item-meta wp-playlist-item-artist">{{ data.meta.artist }}</span><# } #>
|
||||
|
@ -2654,14 +2658,16 @@ function wp_underscore_playlist_templates() {
|
|||
<# if ( data.caption ) { #>
|
||||
{{ data.caption }}
|
||||
<# } else { #>
|
||||
<span class="wp-playlist-item-title">
|
||||
<?php
|
||||
/* translators: %s: Playlist item title. */
|
||||
printf( _x( '“%s”', 'playlist item title' ), '{{{ data.title }}}' );
|
||||
?>
|
||||
</span>
|
||||
<# if ( data.artists && data.meta.artist ) { #>
|
||||
<span class="wp-playlist-item-artist"> — {{ data.meta.artist }}</span>
|
||||
<span class="wp-playlist-item-title">
|
||||
<?php
|
||||
/* translators: %s: Playlist item title. */
|
||||
printf( _x( '“%s”', 'playlist item title' ), '{{{ data.title }}}' );
|
||||
?>
|
||||
</span>
|
||||
<span class="wp-playlist-item-artist"> — {{ data.meta.artist }}</span>
|
||||
<# } else { #>
|
||||
<span class="wp-playlist-item-title">{{{ data.title }}}</span>
|
||||
<# } #>
|
||||
<# } #>
|
||||
</a>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.2-alpha-55250';
|
||||
$wp_version = '6.2-alpha-55251';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue