WP_Hook::do_all_hook()
Processes the functions hooked into the 'all' hook.
Метод класса: WP_Hook{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$WP_Hook = new WP_Hook(); $WP_Hook->do_all_hook( $args );
- $args(массив) (обязательный) (передается по ссылке — &)
- Arguments to pass to the hook callbacks. Passed by reference.
Список изменений
С версии 4.7.0 | Введена. |
Код WP_Hook::do_all_hook() WP Hook::do all hook WP 6.1.1
public function do_all_hook( &$args ) { $nesting_level = $this->nesting_level++; $this->iterations[ $nesting_level ] = array_keys( $this->callbacks ); do { $priority = current( $this->iterations[ $nesting_level ] ); foreach ( $this->callbacks[ $priority ] as $the_ ) { call_user_func_array( $the_['function'], $args ); } } while ( false !== next( $this->iterations[ $nesting_level ] ) ); unset( $this->iterations[ $nesting_level ] ); $this->nesting_level--; }