Requests_Hooks::dispatch( string $hook, array $parameters = array() )

Dispatch a message

Parameters

$hook

(string) (Required) Hook name

$parameters

(array) (Optional) Parameters to pass to callbacks

Default value: array()

Return

(boolean) Successfulness

Source

File: wp-includes/Requests/Hooks.php

public function dispatch($hook, $parameters = array()) {
		if (empty($this->hooks[$hook])) {
			return false;
		}

		foreach ($this->hooks[$hook] as $priority => $hooked) {
			foreach ($hooked as $callback) {
				call_user_func_array($callback, $parameters);
			}
		}

		return true;
	}

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_hooks/dispatch