Summery Summery
Register a new script.
Syntax Syntax
Description Description
Registers a script to be enqueued later using the wp_enqueue_script() function.
Parameters Parameters
- $handle
-
(Required) Name of the script. Should be unique.
- $src
-
(Required) Full URL of the script, or path of the script relative to the WordPress root directory. If source is set to false, script is an alias of other scripts it depends on.
- $deps
-
(Optional) An array of registered script handles this script depends on.
Default value: array()
- $ver
-
(Optional) String specifying script version number, if it has one, which is added to the URL as a query string for cache busting purposes. If version is set to false, a version number is automatically added equal to current installed WordPress version. If set to null, no version is added.
Default value: false
- $in_footer
-
(Optional) Whether to enqueue the script before </body> instead of in the <head>. Default 'false'.
Default value: false
Return Return
(bool) Whether the script has been registered. True on success, false on failure.
Source Source
File: wp-includes/functions.wp-scripts.php
* * @see WP_Dependencies::add() * @see WP_Dependencies::add_data() * * @since 2.1.0 * @since 4.3.0 A return value was added. * * @param string $handle Name of the script. Should be unique. * @param string|bool $src Full URL of the script, or path of the script relative to the WordPress root directory. * If source is set to false, script is an alias of other scripts it depends on. * @param string[] $deps Optional. An array of registered script handles this script depends on. Default empty array.
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.3.0 | A return value was added. |
2.1.0 | Introduced. |