filtrod 4.4.0
user_profile_picture_description
Opis — z kodu źródłowego
Filters the user profile picture description displayed under the Gravatar.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$description | string | The description that will be printed. |
$profile_user | \WP_User | The current WP_User object. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'user_profile_picture_description', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'user_profile_picture_description', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii