mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
phpdoc updates for wp-includes See #7550 props jacobsantos.
git-svn-id: https://develop.svn.wordpress.org/trunk@9002 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1,13 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* BackPress script procedural API.
|
||||
*
|
||||
* @package BackPress
|
||||
* @since r16
|
||||
*/
|
||||
|
||||
/**
|
||||
* Prints script tags in document head
|
||||
* 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.
|
||||
* 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.
|
||||
*
|
||||
* @since r16
|
||||
* @see WP_Scripts::print_scripts()
|
||||
*/
|
||||
function wp_print_scripts( $handles = false ) {
|
||||
|
||||
Reference in New Issue
Block a user