$args
$args
Appears in: 7.0.3
Hook Type: action
Displaying hooks found in version: 7.0.3do_action('$args') is found 1 times:
- /wp-includes/class-wp-hook.php line 365
* @param array $args Parameters to pass to the callback functions. */ public function do_action( $args ) { $this->doing_action = true; $this->apply_filters( '', $args ); // If there are recursive calls to the current action, we haven't finished it until we get to the last one. if ( ! $this->nesting_level ) { $this->doing_action = false; } }