Determines style dependencies.
Description
See also
Parameters
$handles
string|string[]required- Item handle (string) or item handles (array of strings).
$recursion
booloptional- Internal flag that function is calling itself.
Default:
false
$group
int|falseoptional- 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 processing for output.
*
* @since 2.6.0
*
* @param string[] $to_do The list of enqueued style handles about to be processed.
*/
$this->to_do = apply_filters( 'print_styles_array', $this->to_do );
}
return $result;
}
Hooks
- apply_filters( ‘print_styles_array’,
string[] $to_do ) Filters the array of enqueued styles before processing for output.
Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.