filtrod 1.2.0
comment_excerpt
Opis — z kodu źródłowego
Filters the comment excerpt for display.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$comment_excerpt | string | The comment excerpt text. |
$comment_id | string | The comment ID as a numeric string. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'comment_excerpt', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'comment_excerpt', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii