filtrod 4.4.0
notify_post_author
Opis — z kodu źródłowego
Filters whether to send the post author new comment notification emails, overriding the site setting.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$maybe_notify | bool | Whether to notify the post author about the new comment. |
$comment_id | int | The ID of the comment for the notification. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'notify_post_author', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'notify_post_author', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii