Determines style dependencies.
Description
See also
Parameters
-
$handlesstring | string[] required -
Item handle (string) or item handles (array of strings).
-
$recursionbool optional -
Internal flag that function is calling itself.
Default:
false -
$groupint | false optional -
Group level: level (int), no groups (false).
Default:
false
Source
public function all_deps( $handles, $recursion = false, $group = false ) {
$result = parent::all_deps( $handles, $recursion, $group );
if ( ! $recursion ) {
/**
* Filters the array of enqueued styles before processsing for output.
*
* @since 2.6.0
*
* @param string[] $to_do The list of enqueued style handles about to be processsed.
*/
$this->to_do = apply_filters( 'print_styles_array', $this->to_do );
}
return $result;
}
Hoocs
-
apply_filters
( ‘print_styles_array’,
string[] $to_do ) -
Filters the array of enqueued styles before processsing for output.
Changuelog
| Versionen | Description |
|---|---|
| 2.6.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.