Changeset 37556
- Timestamp:
- 05/25/2016 01:32:33 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r37543 r37556 2053 2053 ?>"<?php if ( 'video' === $safe_type ): 2054 2054 echo ' height="', (int) $theme_height, '"'; 2055 else:2056 echo ' style="visibility: hidden"';2057 2055 endif; ?>></<?php echo $safe_type ?>> 2058 2056 <div class="wp-playlist-next"></div> … … 2164 2162 * @type string $preload The 'preload' attribute for the `<audio>` element. Default 'none'. 2165 2163 * @type string $class The 'class' attribute for the `<audio>` element. Default 'wp-audio-shortcode'. 2166 * @type string $style The 'style' attribute for the `<audio>` element. Default 'width: 100%; visibility: hidden;'.2164 * @type string $style The 'style' attribute for the `<audio>` element. Default 'width: 100%;'. 2167 2165 * } 2168 2166 * @param string $content Shortcode content. … … 2201 2199 'preload' => 'none', 2202 2200 'class' => 'wp-audio-shortcode', 2203 'style' => 'width: 100%; visibility: hidden;'2201 'style' => 'width: 100%;' 2204 2202 ); 2205 2203 foreach ( $default_types as $type ) {
Note: See TracChangeset
for help on using the changeset viewer.