WP_Hook::next() WordPress Method
The next() method for WP_Hook allows you to call the next callback in the chain of registered callbacks for the given hook. This is useful for creating pluggable functions, where you want to give other developers the ability to extend or modify the behavior of your function.
WP_Hook::next() #
Contents
Source
File: wp-includes/class-wp-hook.php
public function next() { return next( $this->callbacks ); }
Expand full source codeCollapse full source codeView on TracView on GitHub