do_action( 'wp_footer' )
Prints scripts or data before the closing body tag on the front end.
Description Description
Source Source
Changelog Changelog
| Version | Description |
|---|---|
| 1.5.1 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Example code:
function your_function() { echo 'This is inserted at the bottom'; } add_action( 'wp_footer', 'your_function' );