WC_Frontend_Scripts::register_script()private staticWC 1.0

Register a script for use.

Method of the class: WC_Frontend_Scripts{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Frontend_Scripts::register_script( $handle, $path, $deps, $version, $in_footer );
$handle(string) (required)
Name of the script. Should be unique.
$path(string) (required)
Full URL of the script, or path of the script relative to the WordPress root directory.
$deps(string[])
An array of registered script handles this script depends on.
Default: array( foo )
$version(string)
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: WC_VERSION
$in_footer(true|false)
Whether to enqueue the script before </body> instead of in the <head>.
Default: 'false'

WC_Frontend_Scripts::register_script() code WC 8.7.0

private static function register_script( $handle, $path, $deps = array( 'jquery' ), $version = WC_VERSION, $in_footer = array( 'strategy' => 'defer' ) ) {
	self::$scripts[] = $handle;
	wp_register_script( $handle, $path, $deps, $version, $in_footer );
}