d01d7cf85d first commit 4 lat temu vneck-tee-2-100x100.jpg d01d7cf85d first commit 4 lat temu vneck-tee-2-150x150.jpg d01d7cf85d first commit 4 lat temu vneck-tee-2-300x300.jpg d01d7cf85d first commit 4 lat temu vneck-tee-2-450x450.jpg d01d7cf85d first commit 4 lat temu vneck-tee-2-600x599.jpg d01d7cf85d first commit 4 lat temu vneck-tee-2-768x767.jpg d01d7cf85d first commit 4 lat temu vneck-tee-2.jpg d01d7cf85d first commit 4 lat temu tum/whitesports - Gogs: Simplico Git Service

Нема описа

embed.php 481B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Contains the post embed base template
  4. *
  5. * When a post is embedded in an iframe, this file is used to create the output
  6. * if the active theme does not include an embed.php template.
  7. *
  8. * @package WordPress
  9. * @subpackage oEmbed
  10. * @since 4.4.0
  11. */
  12. get_header( 'embed' );
  13. if ( have_posts() ) :
  14. while ( have_posts() ) :
  15. the_post();
  16. get_template_part( 'embed', 'content' );
  17. endwhile;
  18. else :
  19. get_template_part( 'embed', '404' );
  20. endif;
  21. get_footer( 'embed' );