wpseek.com
A WordPress-centric search engine for devs and theme authors



_wp_footer_scripts › WordPress Function

Since3.3.0
Deprecatedn/a
_wp_footer_scripts ( No parameters )
Defined at:
Codex:

Private, for use in *_footer_scripts hooks

In classic themes, when block styles are loaded on demand via {@see}, this function is replaced by a closure in {@see} which will capture the output of {@see} before printing footer scripts as usual. The captured late-printed styles are then hoisted to the HEAD by means of the template enhancement output buffer.


Source

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