WP_Scripts::do_footer_items()publicWP 2.8.0

Processes items and dependencies for the footer group.

Method of the class: WP_Scripts{}

No Hooks.

Return

String[]. Handles of items that have been processed.

Usage

global $wp_scripts;
$wp_scripts->do_footer_items();

Notes

Changelog

Since 2.8.0 Introduced.

WP_Scripts::do_footer_items() code WP 6.5.2

public function do_footer_items() {
	$this->do_items( false, 1 );
	return $this->done;
}