What is wp_footer() in WordPress?
It is a type of action hook where the code is dynamically added to a theme in between footer tag. With the help of these functions, we can insert plugins additional code into footer tag.
BY Best Interview Question ON 23 Jul 2019
Example
<footer>
<?php wp_footer(); ?>
</footer>