WP_Hook::do_all_hook( array $args )

In this article

Processes the functions hooked into the ‘all’ hook.

Parameters

$argsarrayrequired
Arguments to pass to the hook callbacks. Passed by reference.

Source

public function do_all_hook( &$args ) {
	$nesting_level                      = $this->nesting_level++;
	$this->iterations[ $nesting_level ] = $this->priorities;

	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;
}

Changelog

VersionDescription
4.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.