| Server IP : 172.67.199.98 / Your IP : 104.23.197.224 Web Server : nginx/1.26.1 System : Linux ecc7dbd2befa 5.15.0-122-generic #132-Ubuntu SMP Thu Aug 29 13:45:52 UTC 2024 x86_64 User : www-data ( 82) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/src/wordpress/wp-includes/theme-compat/ |
Upload File : |
<?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' );