Using WordPress ‘wp_footer()’ PHP function

The wp_footer() WordPress PHP function is used to trigger the wp_footer action, which allows developers to add custom scripts, styles, or other elements just before the closing </body> tag of a WordPress site.

Usage

<body>
	<!-- All the document's HTML goes first. -->
	<!-- Then last, before closing the body tag, add: -->
	<?php wp_footer(); ?>
</body>

Parameters

None

More information

See WordPress Developer Resources: wp_footer()

Tagged in

Leave a Comment

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