$args

$args

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: 7.0.3

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