wpseek.com
				A WordPress-centric search engine for devs and theme authors
			print_footer_scripts › WordPress Function
Since2.8.0
Deprecatedn/a
› print_footer_scripts ( No parameters )
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Prints the scripts that were queued for the footer or too late for the HTML head.
Related Functions: wp_print_footer_scripts, _wp_footer_scripts, print_head_scripts, print_embed_scripts, wp_print_head_scripts
	Source
function print_footer_scripts() {
	global $wp_scripts, $concatenate_scripts;
	if ( ! ( $wp_scripts instanceof WP_Scripts ) ) {
		return array(); // No need to run if not instantiated.
	}
	script_concat_settings();
	$wp_scripts->do_concat = $concatenate_scripts;
	$wp_scripts->do_footer_items();
	/**
	 * Filters whether to print the footer scripts.
	 *
	 * @since 2.8.0
	 *
	 * @param bool $print Whether to print the footer scripts. Default true.
	 */
	if ( apply_filters( 'print_footer_scripts', true ) ) {
		_print_scripts();
	}
	$wp_scripts->reset();
	return $wp_scripts->done;
}