Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
WordPress Theme Development

footer.php in WordPress Themes

Close the document in footer.php and call wp_footer for scripts.

footer.php in WordPress Themes — a practical guide to WordPress footer.php with clear examples you can reuse in real projects.

WordPress Theme Development Series (14/96). Prefer one article? Read the complete WordPress theme development tutorial.

Short description

`wp_footer()` is required so plugins/themes can print deferred scripts correctly.

footer.php sketch

<footer class="site-footer">
  <p>© <?php echo esc_html(date('Y')); ?> <?php bloginfo('name'); ?></p>
</footer>
<?php wp_footer(); ?>
</body>
</html>

Leave a reply

Your email address will not be published. Required fields are marked *