pre_user_description WordPress Filter Hook
The pre_user_description hook is called before the user's description is retrieved from the database. It can be used to modify the user description before it is retrieved, or to return a custom description.
apply_filters( 'pre_user_description', string $description ) #
Filters a user’s description before the user is created or updated.
Parameters
- $description
(string)The user's description.
Source
File: wp-includes/user.php
Changelog
Version | Description |
---|---|
2.0.3 | Introduced. |