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