wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_print_scripts › WordPress Function
Since2.1.0
Deprecatedn/a
› wp_print_scripts ( $handles = false )
Parameters: |
|
See: |
|
Returns: |
|
Defined at: |
|
Codex: |
Prints scripts in document head that are in the $handles queue.
Called by admin-header.php and {@see '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. Makes use of already-instantiated$wp_scripts
global if present. Use provided {@see 'wp_print_scripts'}
hook to register/enqueue new scripts.Related Functions: wp_print_head_scripts, wp_print_script_tag, wp_print_footer_scripts, wp_playlist_scripts, wp_print_styles
Source
function wp_print_scripts( $handles = false ) { global $wp_scripts; /** * Fires before scripts in the $handles queue are printed. * * @since 2.1.0 */ do_action( 'wp_print_scripts' ); if ( '' === $handles ) { // For 'wp_head'. $handles = false; } _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); if ( ! ( $wp_scripts instanceof WP_Scripts ) ) { if ( ! $handles ) { return array(); // No need to instantiate if nothing is there. } } return wp_scripts()->do_items( $handles ); }