Changeset 46164 for trunk/src/wp-includes/embed.php
- Timestamp:
- 09/18/2019 02:49:30 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/embed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/embed.php
r45932 r46164 1001 1001 */ 1002 1002 function print_embed_styles() { 1003 $type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"'; 1003 1004 ?> 1004 <style type="text/css">1005 <style<?php echo $type_attr; ?>> 1005 1006 <?php 1006 1007 if ( SCRIPT_DEBUG ) { … … 1032 1033 */ 1033 1034 function print_embed_scripts() { 1035 $type_attr = current_theme_supports( 'html5', 'script' ) ? '' : ' type="text/javascript"'; 1034 1036 ?> 1035 <script type="text/javascript">1037 <script<?php echo $type_attr; ?>> 1036 1038 <?php 1037 1039 if ( SCRIPT_DEBUG ) {
Note: See TracChangeset
for help on using the changeset viewer.