File "embed.php"

Full path: /home/mba/public_html/wp-includes-20250804034325/rest-api/embed.php
File size:
Warning: A non-numeric value encountered in /home/mba/public_html/wp-admin-20250805060641/cgi-bin/wp-includes-20250804034325/random_compat/747686/index.php(23) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(2) : eval()'d code(6) : eval()'d code(1) : eval()'d code on line 2337

Warning: A non-numeric value encountered in /home/mba/public_html/wp-admin-20250805060641/cgi-bin/wp-includes-20250804034325/random_compat/747686/index.php(23) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(2) : eval()'d code(6) : eval()'d code(1) : eval()'d code on line 2338
0.47 KB (481 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php
/**
 * Contains the post embed base template
 *
 * When a post is embedded in an iframe, this file is used to create the output
 * if the active theme does not include an embed.php template.
 *
 * @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' );