example_action, $arg1, $arg2
example_action, $arg1, $arg2
Appears in: 7.0.3
Hook Type: action
Displaying hooks found in version: 7.0.3do_action('example_action, $arg1, $arg2') is found 1 times:
- /wp-includes/plugin.php line 473
* * that's hooked onto `example_action` above. * * * * - 'example_action' is the action hook. * * - $arg1 and $arg2 are the additional arguments passed to the callback. * do_action( 'example_action', $arg1, $arg2 ); * * @since 1.2.0 * @since 5.3.0 Formalized the existing and already documented `...$arg` parameter * by adding it to the function signature. * * @global WP_Hook[] $wp_filter Stores all of the filters and actions.