_wp_footer_scripts() WordPress Function

The _wp_footer_scripts() function is used to load JavaScript code in the footer of a WordPress site. This function is called by the wp_footer() function.

_wp_footer_scripts() #

Private, for use in *_footer_scripts hooks


Source

File: wp-includes/script-loader.php

function _wp_footer_scripts() {
	print_late_styles();
	print_footer_scripts();
}


Top ↑

Changelog

Changelog
VersionDescription
3.3.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.