example_action

example_action

Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.5.2

do_action('example_action') is found 1 times:

  • /wp-includes/plugin.php line 468
     *      * 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.