do_action( 'wp_footer' )
Prints scripts or data before the closing body tag on the front end.
More Information
The wp_footer
action is triggered near the tag of the user’s template by the wp_footer() function. Although this is theme-dependent, it is one of the most essential theme hooks, so it is fairly widely supported.
This hook provides no parameters. You use this hook by having your function echo output to the browser, or by having it perform background tasks. Your functions shouldn’t return, and shouldn’t take any parameters.
This hook is theme-dependent which means that it is up to the author of each WordPress theme to include it. It may not be available on all themes, so you should take this into account when using it.
When included, the default output for this function is the admin panel which will be shown in the top of the theme. It should be kept in the footer for every theme because most of the plugin bind their script files or functions to this hook.
This hook is an action which means that it primarily acts as an event trigger, instead of a content filter. This is a semantic difference, but it will help you to remember what this hook does
Source
File: wp-includes/general-template.php
.
View all references
do_action( 'wp_footer' );
Changelog
Version | Description |
---|---|
1.5.1 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Example code:
Example migrated from Codex:
If you want to influence the moment that your hook is executed, you can append an integer as 3rd argument to
add_action
:The higher the number, the lower the priority and as a result your hook will be executed further down the page. Enqueued scripts are executed at priority level 20.
In version 5.8 of wordpress the action do_action(‘wp_footer’) seems to be called after each widget on the new block based Widgets screen. I think add a condition in your function to limit this.
Example migrated from Codex:
To load jQuery you need to use enqueue function. As described enqueue script executed at priority level 20.