diff --git src/wp-includes/functions.wp-scripts.php src/wp-includes/functions.wp-scripts.php
index 315d69f..048ac6f 100644
|
|
function wp_deregister_script( $handle ) { |
251 | 251 | * @since 2.1.0 |
252 | 252 | * |
253 | 253 | * @param string $handle Name of the script. Should be unique. |
254 | | * @param string $src Full URL of the script, or path of the script relative to the WordPress root directory. |
| 254 | * @param string|bool $src Full URL of the script, or path of the script relative to the WordPress root directory. |
| 255 | * Default 'false'. |
255 | 256 | * @param array $deps Optional. An array of registered script handles this script depends on. Default empty array. |
256 | 257 | * @param string|bool|null $ver Optional. String specifying script version number, if it has one, which is added to the URL |
257 | 258 | * as a query string for cache busting purposes. If version is set to false, a version |