diff --git a/src/wp-includes/media-template.php b/src/wp-includes/media-template.php
index 76b2d32..5f254bd 100644
a
|
b
|
function wp_print_media_templates() { |
641 | 641 | <# if ( data.userSettings && ! data.model.canEmbed ) { #> |
642 | 642 | data-user-setting="urlbutton" |
643 | 643 | <# } #>> |
644 | | |
| 644 | <# if ( 'image' === data.type ) { #> |
| 645 | <option value="none" selected> |
| 646 | <?php esc_attr_e('None'); ?> |
| 647 | </option> |
| 648 | <# } #> |
645 | 649 | <# if ( data.model.canEmbed ) { #> |
646 | 650 | <option value="embed" selected> |
647 | 651 | <?php esc_attr_e('Embed Media Player'); ?> |
648 | 652 | </option> |
649 | 653 | <option value="file"> |
650 | 654 | <# } else { #> |
651 | | <option value="file" selected> |
| 655 | <option value="file"> |
652 | 656 | <# } #> |
653 | 657 | <# if ( data.model.canEmbed ) { #> |
654 | 658 | <?php esc_attr_e('Link to Media File'); ?> |
… |
… |
function wp_print_media_templates() { |
667 | 671 | <option value="custom"> |
668 | 672 | <?php esc_attr_e('Custom URL'); ?> |
669 | 673 | </option> |
670 | | <option value="none"> |
671 | | <?php esc_attr_e('None'); ?> |
672 | | </option> |
673 | 674 | <# } #> |
674 | 675 | </select> |
675 | 676 | </label> |