$tag, …$args

$tag, …$args

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

do_action('$tag, …$args') is found 2 times:

  • /packages/blueprint/src/UseWPFunctions.php line 63
    	 *
    	 * @param string $tag The name of the action to be executed.
    	 * @param mixed  ...$args Optional. Additional arguments which are passed on to the functions hooked to the action.
    	 */
    	public function wp_do_action( $tag, ...$args ) {
    		// phpcs:ignore
    		do_action( $tag, ...$args );
    	}
    	/**
    	 * Checks if a plugin is active.
    	 *
    
  • /packages/blueprint/src/UseWPFunctions.php line 65
    	 * @param mixed  ...$args Optional. Additional arguments which are passed on to the functions hooked to the action.
    	 */
    	public function wp_do_action( $tag, ...$args ) {
    		// phpcs:ignore
    		do_action( $tag, ...$args );
    	}
    	/**
    	 * Checks if a plugin is active.
    	 *
    	 * @param string $plugin Path to the plugin file relative to the plugins directory.
    	 * @return bool True if the plugin is active, false otherwise.