filtrod 3.0.0
login_form_top
Opis — z kodu źródłowego
Filters content to display at the top of the login form.
The filter evaluates just following the opening form tag element.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$content | string | Content to display. Default empty. |
$args | array | Array of login form arguments. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'login_form_top', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'login_form_top', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii