Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Contains the post embed base template * * When a post is embedded in an ifr..
Decoded Output download
<?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' );
?>
Did this file decode correctly?
Original Code
<?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' );
Function Calls
get_header | 1 |
Stats
MD5 | 72b64c89bf45f2760c6133f7a3dd3649 |
Eval Count | 0 |
Decode Time | 148 ms |