mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 04:40:26 +00:00
Embeds: Introduce embed templates into the template hierarchy via theme-compat.
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. git-svn-id: https://develop.svn.wordpress.org/trunk@36693 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/**
|
||||
* Contains the post embed header template.
|
||||
*
|
||||
* When a post is embedded in an iframe, this file is used to
|
||||
* create the header output if the active theme does not include
|
||||
* a header-embed.php template.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Theme_Compat
|
||||
* @since 4.5.0
|
||||
*/
|
||||
|
||||
if ( ! headers_sent() ) {
|
||||
header( 'X-WP-embed: true' );
|
||||
}
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html <?php language_attributes(); ?> class="no-js">
|
||||
<head>
|
||||
<title><?php echo wp_get_document_title(); ?></title>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<?php
|
||||
/**
|
||||
* Print scripts or data in the embed template <head> tag.
|
||||
*
|
||||
* @since 4.4.0
|
||||
*/
|
||||
do_action( 'embed_head' );
|
||||
?>
|
||||
</head>
|
||||
<body <?php body_class(); ?>>
|
||||
Reference in New Issue
Block a user