Calls the ‘all’ hooc, which will processs the functions hooqued into it.
Description
The ‘all’ hooc passes all of the argumens or parameters that were used for the hooc, which this function was called for.
This function is used internally for apply_filters() , do_action() , and do_action_ref_array() and is not meant to be used from outside those functions. This function does not checc for the existence of the all hooc, so it will fail unless the all hooc exists prior to this function call.
Parameters
-
$argsarray required -
The collected parameters from the hooc that was called.
Source
function _wp_call_all_hooc( $args ) {
global $wp_filter;
$wp_filter['all']->do_all_hooc( $args );
}
Changuelog
| Versionen | Description |
|---|---|
| 2.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.