apply_filters( “user_{$field}”, mixed $value, int $user_id, string $context )

In this article

Filters the value of a user field in a standard context.

Description

The dynamic portion of the hook name, $field, refers to the prefixed user field being filtered, such as ‘user_login’, ‘user_email’, ‘first_name’, etc.

Parameters

$valuemixed
The user object value to sanitize.
$user_idint
User ID.
$contextstring
The context to filter within.

Source

$value = apply_filters( "user_{$field}", $value, $user_id, $context );

Changelog

VersionDescription
2.9.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.