Ticket #34663: 34663.12.diff
File 34663.12.diff, 1.7 KB (added by , 9 years ago) |
---|
-
src/wp-admin/about.php
83 83 <div class="feature-section two-col"> 84 84 <div class="col"> 85 85 <div class="embed-container"> 86 <?php echo wp_oembed_get( 'https://make.wordpress.org/core/2015/10/28/new-embeds-feature-in-wordpress-4-4/' ); ?> 86 <?php 87 $embed1 = get_transient( 'about-page-embed-1' ); 88 if ( false === $embed1 ) { 89 $embed1 = wp_oembed_get( 'https://make.wordpress.org/core/2015/10/28/new-embeds-feature-in-wordpress-4-4/' ); 90 91 set_transient( 'about-page-embed-1', $embed1 ); 92 } 93 echo $embed1; ?> 87 94 </div> 88 95 <h3><?php _e( 'Embed your WordPress content' ); ?></h3> 89 96 <p><?php _e( 'Now you can embed your posts on other sites, even other WordPress sites. Simply drop a post URL into the editor and see an instant embed preview, complete with the title, excerpt, and featured image if you’ve set one. We’ll even include your site icon and links for comments and sharing.' ); ?></p> … … 90 97 </div> 91 98 <div class="col"> 92 99 <div class="embed-container"> 93 <?php echo wp_oembed_get( '' ); ?> 100 <?php 101 $embed2 = get_transient( 'about-page-embed-2' ); 102 if ( false === $embed2 ) { 103 $embed2 = wp_oembed_get( 'https://cloudup.com/cD3duXiAI5k' ); 104 105 set_transient( 'about-page-embed-2', $embed2 ); 106 } 107 echo $embed2; ?> 94 108 </div> 95 109 <h3><?php _e( 'Even more embed providers' ); ?></h3> 96 110 <p><?php _e( 'In addition to post embeds, WordPress 4.4 also adds support for five new oEmbed providers: Cloudup, Reddit Comments, ReverbNation, Speaker Deck, and VideoPress.' ); ?></p>