print_head_scripts [ WordPress Function ]
print_head_scripts ( No parameters )
| See: | |
| Defined at: |
|
Similar Functions: wp_print_head_scripts, _print_scripts, print_footer_scripts, wp_print_scripts, wp_print_footer_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.
Source
<?php
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;
}
?>
Examples [ wp-snippets.com ]
Top Google Search Results
- print_head_scripts Wordpress hook details -- Adam Brown, BYU ...
Detailed information about every action hook and filter used in WordPress. Makes Plugin API easier to use. Lists appearance, file location, and deprecation data ...
adambrown.info - print_head_scripts() WordPress function reference, arguments and ...
Prints the script queue in the HTML head on admin pages.
queryposts.com - Docs for page script-loader.php
Description | Includes | Functions. WordPress scripts and styles ...
phpdoc.wordpress.org - PHPXref.com - WordPress 3.0.1 - Detail view of script-loader.php
Aug 19, 2010 ... wp_just_in_time_script_localization() wp_style_loader_src() print_head_scripts() print_footer_scripts() _print_scripts() wp_print_head_scripts() ...
phpxref.com