filtrod 4.2.0
comment_form_submit_button
Opis — z kodu źródłowego
Filters the submit button for the comment form to display.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$submit_button | string | HTML markup for the submit button. |
$args | array | Arguments passed to comment_form(). |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'comment_form_submit_button', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'comment_form_submit_button', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii