Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

33 řádky
704 B

  1. <?php
  2. /**
  3. * Contains the post embed header template
  4. *
  5. * When a post is embedded in an iframe, this file is used to create the header output
  6. * if the active theme does not include a header-embed.php template.
  7. *
  8. * @package WordPress
  9. * @subpackage Theme_Compat
  10. * @since 4.5.0
  11. */
  12. if ( ! headers_sent() ) {
  13. header( 'X-WP-embed: true' );
  14. }
  15. ?>
  16. <!DOCTYPE html>
  17. <html <?php language_attributes(); ?> class="no-js">
  18. <head>
  19. <title><?php echo wp_get_document_title(); ?></title>
  20. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  21. <?php
  22. /**
  23. * Prints scripts or data in the embed template <head> tag.
  24. *
  25. * @since 4.4.0
  26. */
  27. do_action( 'embed_head' );
  28. ?>
  29. </head>
  30. <body <?php body_class(); ?>>