Fires before the footer template file is loaded.
$namestring|null
$argsarray
get_footer is a hook that gets run at the very start of the get_footer() function call. If you pass in the name for a specific footer file, like get_footer( 'new' ), the do_action will pass in the name as a parameter for the hook. This allows you to limit your add_action calls to specific templates if you wish. Actions added to this hook should be added to your functions.php file.
Note: This hook is best to use to set up and execute code that doesn’t get echoed to the browser until later in the page load. Anything you echo will show up before any of the markup is displayed.
do_action( 'get_footer', $name, $args );
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/get_footer