Edit File by line
/home/barbar84/www/wp-inclu.../theme-co...
File: header-embed.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Contains the post embed header template
[2] Fix | Delete
*
[3] Fix | Delete
* When a post is embedded in an iframe, this file is used to create the header output
[4] Fix | Delete
* if the active theme does not include a header-embed.php template.
[5] Fix | Delete
*
[6] Fix | Delete
* @package WordPress
[7] Fix | Delete
* @subpackage Theme_Compat
[8] Fix | Delete
* @since 4.5.0
[9] Fix | Delete
*/
[10] Fix | Delete
[11] Fix | Delete
if ( ! headers_sent() ) {
[12] Fix | Delete
header( 'X-WP-embed: true' );
[13] Fix | Delete
}
[14] Fix | Delete
[15] Fix | Delete
?>
[16] Fix | Delete
<!DOCTYPE html>
[17] Fix | Delete
<html <?php language_attributes(); ?> class="no-js">
[18] Fix | Delete
<head>
[19] Fix | Delete
<title><?php echo wp_get_document_title(); ?></title>
[20] Fix | Delete
<meta http-equiv="X-UA-Compatible" content="IE=edge">
[21] Fix | Delete
<?php
[22] Fix | Delete
/**
[23] Fix | Delete
* Prints scripts or data in the embed template head tag.
[24] Fix | Delete
*
[25] Fix | Delete
* @since 4.4.0
[26] Fix | Delete
*/
[27] Fix | Delete
do_action( 'embed_head' );
[28] Fix | Delete
?>
[29] Fix | Delete
</head>
[30] Fix | Delete
<body <?php body_class(); ?>>
[31] Fix | Delete
[32] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function