Definition:
function print_head_scripts() {}
Prints the script queue in the HTML head on admin pages.
Postpones the scripts that were queued for the footer. print_footer_scripts() is called in the footer to print these scripts.
Defined filters
- print_head_scripts
apply_filters('print_head_scripts', true)
Defined actions
- wp_print_scripts
do_action('wp_print_scripts');
Source code
function print_head_scripts() { global $wp_scripts, $concatenate_scripts; if ( ! did_action('wp_print_scripts') ) do_action('wp_print_scripts'); if ( !is_a($wp_scripts, 'WP_Scripts') ) $wp_scripts = new WP_Scripts(); script_concat_settings(); $wp_scripts->do_concat = $concatenate_scripts; $wp_scripts->do_head_items(); if ( apply_filters('print_head_scripts', true) ) _print_scripts(); $wp_scripts->reset(); return $wp_scripts->done; }
2629
No comments yet... Be the first to leave a reply!