wp_enqueue_script


wp_enqueue_script ( $handle, $src = '', $deps = array(), $ver = false, $args = array() )

Parameters:
  • (string) handle Name of the script. Should be unique.
  • (string) src Full URL of the script, or path of the script relative to the WordPress root directory. Default empty.
  • (string[]) deps Optional. An array of registered script handles this script depends on. Default empty array.
  • (string|bool|null) 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.
  • (array|bool) args { Optional. An array of additional script loading strategies. Default empty array. Otherwise, it may be a boolean in which case it determines whether the script is printed in the footer. Default false. @type string $strategy Optional. If provided, may be either 'defer' or 'async'. @type bool $in_footer Optional. Whether to print the script in the footer. Default 'false'. }
See:
  • WP_Dependencies::add()
  • WP_Dependencies::add_data()
  • WP_Dependencies::enqueue()
Defined at:
Change Log:
  • 6: .

Description

Enqueues a script.Registers the script if `$src` provided (does NOT overwrite), and enqueues it.

Related Functions

wp_enqueue_scripts, wp_dequeue_script, wp_enqueue_script_module, wp_enqueue_style, wp_dequeue_script_module

Top Google Results

User discussions

wpseek mobile