WP_Styles::do_footer_items() public WP 3.3.0
Processes items and dependencies for the footer group.
HTML 5 allows styles in the body, grab late enqueued items and output them in the footer.
{} It's a method of the class: WP_Styles{}
No Hooks.
Return
String[]. Handles of items that have been processed.
Usage
global $wp_styles; $wp_styles->do_footer_items();
Notes
- See: WP_Dependencies::do_items()
Changelog
Since 3.3.0 | Introduced. |
Code of WP_Styles::do_footer_items() WP Styles::do footer items WP 5.6
public function do_footer_items() {
$this->do_items( false, 1 );
return $this->done;
}