Changeset 28050
- Timestamp:
- 04/08/2014 05:39:06 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r28030 r28050 1021 1021 <# } #> 1022 1022 <div class="wp-playlist-caption"> 1023 <span class="wp-playlist-item-meta wp-playlist-item-title">“{{ { data.title }}}”</span>1023 <span class="wp-playlist-item-meta wp-playlist-item-title">“{{ data.title }}”</span> 1024 1024 <# if ( data.meta.album ) { #><span class="wp-playlist-item-meta wp-playlist-item-album">{{ data.meta.album }}</span><# } #> 1025 1025 <# if ( data.meta.artist ) { #><span class="wp-playlist-item-meta wp-playlist-item-artist">{{ data.meta.artist }}</span><# } #> … … 1195 1195 'src' => $url, 1196 1196 'type' => $ftype['type'], 1197 'title' => get_the_title( $attachment->ID ),1198 'caption' => wptexturize( $attachment->post_excerpt ),1199 'description' => wptexturize( $attachment->post_content )1197 'title' => $attachment->post_title, 1198 'caption' => $attachment->post_excerpt, 1199 'description' => $attachment->post_content 1200 1200 ); 1201 1201
Note: See TracChangeset
for help on using the changeset viewer.