WP_Hook::next()publicWP 4.7.0ReturnTypeWillChange

Moves forward to the next element.

Method of the class: WP_Hook{}

No Hooks.

Return

Array. Of callbacks at next priority.

Usage

$WP_Hook = new WP_Hook();
$WP_Hook->next();

Changelog

Since 4.7.0 Introduced.

WP_Hook::next() code WP 6.8

public function next() {
	return next( $this->callbacks );
}