InterviewSolution
Saved Bookmarks
| 1. |
What is wp_footer() in WordPress? |
|
Answer» 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.Example <footer> <?php wp_footer(); ?> </footer> |
|