Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

footer-embed.php 438 B

vor 3 Jahren
123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Contains the post embed footer template
  4. *
  5. * When a post is embedded in an iframe, this file is used to create the footer output
  6. * if the active theme does not include a footer-embed.php template.
  7. *
  8. * @package WordPress
  9. * @subpackage Theme_Compat
  10. * @since 4.5.0
  11. */
  12. /**
  13. * Prints scripts or data before the closing body tag in the embed template.
  14. *
  15. * @since 4.4.0
  16. */
  17. do_action( 'embed_footer' );
  18. ?>
  19. </body>
  20. </html>