Edit File by line
/home/zeestwma/ceyloniy.../wp-inclu.../theme-co...
File: embed.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Contains the post embed base template
[2] Fix | Delete
*
[3] Fix | Delete
* When a post is embedded in an iframe, this file is used to create the output
[4] Fix | Delete
* if the active theme does not include an embed.php template.
[5] Fix | Delete
*
[6] Fix | Delete
* @package WordPress
[7] Fix | Delete
* @subpackage oEmbed
[8] Fix | Delete
* @since 4.4.0
[9] Fix | Delete
*/
[10] Fix | Delete
[11] Fix | Delete
get_header( 'embed' );
[12] Fix | Delete
[13] Fix | Delete
if ( have_posts() ) :
[14] Fix | Delete
while ( have_posts() ) :
[15] Fix | Delete
the_post();
[16] Fix | Delete
get_template_part( 'embed', 'content' );
[17] Fix | Delete
endwhile;
[18] Fix | Delete
else :
[19] Fix | Delete
get_template_part( 'embed', '404' );
[20] Fix | Delete
endif;
[21] Fix | Delete
[22] Fix | Delete
get_footer( 'embed' );
[23] Fix | Delete
[24] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function