example_action

example_action

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('example_action') is found 1 times:

  • /wp-includes/plugin.php line 468
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    *      * 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.