example_filter

example_filter

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.4.3

apply_filters('example_filter') is found 1 times:

  • /wp-includes/plugin.php line 158
     *      *
     *      * - 'example_filter' is the filter hook.
     *      * - 'filter me' is the value being filtered.
     *      * - $arg1 and $arg2 are the additional arguments passed to the callback.
     *     $value = apply_filters( 'example_filter', 'filter me', $arg1, $arg2 );
     *
     * @since 0.71
     * @since 6.0.0 Formalized the existing and already documented `...$args` parameter
     *              by adding it to the function signature.
     *
     * @global WP_Hook[] $wp_filter         Stores all of the filters and actions.