WC_Frontend_Scripts::enqueue_script()
Register and enqueue a script for use.
Метод класса: WC_Frontend_Scripts{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = WC_Frontend_Scripts::enqueue_script( $handle, $path, $deps, $version, $in_footer );
- $handle(строка) (обязательный)
- Name of the script. Should be unique.
- $path(строка)
- 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.
По умолчанию: array( fooo ) - $version(строка)
- 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.
По умолчанию: WC_VERSION - $in_footer(true|false)
- Whether to enqueue the script before </body> instead of in the <head>.
По умолчанию: 'false'
Код WC_Frontend_Scripts::enqueue_script() WC Frontend Scripts::enqueue script WC 9.3.3
private static function enqueue_script( $handle, $path = '', $deps = array( 'jquery' ), $version = WC_VERSION, $in_footer = array( 'strategy' => 'defer' ) ) { if ( ! in_array( $handle, self::$scripts, true ) && $path ) { self::register_script( $handle, $path, $deps, $version, $in_footer ); } wp_enqueue_script( $handle ); }