Switch language

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




print_head_scripts [ WordPress Function ]

print_head_scripts ( No parameters )
See:
Defined at:



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

More ...

User discussions [ wordpress.org ]

0 User Note(s)

None yet. Be the first!

Add New ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics