mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-08 20:01:12 +01:00
0fc00feec3
Splits wp-includes/embed-template.php, introduced in 4.4, into five new templates that can be individually overridden by themes: * embed.php * embed-404.php * embed-content.php * header-embed.php * footer-embed.php Also introduces a new template tag for outputting the site title, `the_embed_site_title()`. The five new templates live in theme-compat, allowing for graceful fallbacks should themes prefer not to override any or all of them. Props swissspidy, imath, ocean90, DrewAPicture. See #34561. Built from https://develop.svn.wordpress.org/trunk@36693 git-svn-id: http://core.svn.wordpress.org/trunk@36660 1a063a9b-81f0-0310-95a4-ce76da25c4cd
24 lines
416 B
PHP
24 lines
416 B
PHP
<?php
|
|
/**
|
|
* Contains the post embed template.
|
|
*
|
|
* When a post is embedded in an iframe, this file is used to
|
|
* create the output.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage oEmbed
|
|
* @since 4.4.0
|
|
*/
|
|
|
|
get_header( 'embed' );
|
|
|
|
if ( have_posts() ) :
|
|
while ( have_posts() ) : the_post();
|
|
get_template_part( 'embed', 'content' );
|
|
endwhile;
|
|
else :
|
|
get_template_part( 'embed', '404' );
|
|
endif;
|
|
|
|
get_footer( 'embed' );
|