WP_Scripts::all_deps() WordPress Method
The WP_Scripts::all_deps() method is used to retrieve all the dependencies for a given script. This includes both the registered dependencies and the dependencies that have been added inline with the script tags.
WP_Scripts::all_deps( string|string[] $handles, bool $recursion = false, int|false $group = false ) #
Determines script dependencies.
Description
See also
Parameters
- $handles
(string|string[])(Required)Item handle (string) or item handles (array of strings).
- $recursion
(bool)(Optional) Internal flag that function is calling itself.
Default value: false
- $group
(int|false)(Optional) Group level: level (int), no groups (false).
Default value: false
Return
(bool) True on success, false on failure.
Source
File: wp-includes/class.wp-scripts.php
public function all_deps( $handles, $recursion = false, $group = false ) { $r = parent::all_deps( $handles, $recursion, $group ); if ( ! $recursion ) { /** * Filters the list of script dependencies left to print. * * @since 2.3.0 * * @param string[] $to_do An array of script dependency handles. */ $this->to_do = apply_filters( 'print_scripts_array', $this->to_do ); } return $r; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |