wp_print_scripts [ WordPress Function ]
| See: |
|
| Defined at: |
|
Prints script tags in document head.
Called by admin-header.php and by wp_head hook. Since it is called by wp_head on every page load, the function does not instantiate the WP_Scripts object unless script names are explicitly passed. Does make use of already instantiated $wp_scripts if present. Use provided wp_print_scripts hook to register/enqueue new scripts.
Source
<?php
function wp_print_scripts( $handles = false ) {
do_action( 'wp_print_scripts' );
if ( '' === $handles ) // for wp_head
$handles = false;
global $wp_scripts;
if ( ! is_a( $wp_scripts, 'WP_Scripts' ) ) {
if ( ! did_action( 'init' ) )
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>init</code>' ), '3.3' );
if ( !$handles )
return array(); // No need to instantiate if nothing is there.
else
$wp_scripts = new WP_Scripts();
}
return $wp_scripts->do_items( $handles );
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- Function Reference/wp enqueue script « WordPress Codex
Note: This function will not work if it is called from a wp_head or wp_print_scripts actions, as the files need to be enqueued before those actions are run. See the ...
codex.wordpress.org - wp_print_scripts places jquery function above jquery src - WordPress
Hi, I'm trying to add some jQuery script (a simple alert at this point) to my header, but when I use wp_print_scripts it places it above the code that links the jQuery ...
wordpress.org - How to load JavaScript like a WordPress Master | scribu
Jan 16, 2010 ... $add_my_script ) return; wp_print_scripts('my-script'); } ... The key here is that you 're calling wp_print_scripts() directly, instead of relying on ...
scribu.net - wp_print_scripts Wordpress hook details -- Adam Brown, BYU ...
wp_print_scripts. Description. Runs just before WordPress prints registered JavaScript scripts into the page header. This description was scraped automatically ...
adambrown.info