filtrod 3.8.0
comment_notification_notify_author
Opis — z kodu źródłowego
Filters whether to notify comment authors of their comments on their own posts.
By default, comment authors aren't notified of their comments on their own posts. This filter allows you to override that.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$notify | bool | Whether to notify the post author of their own comment. Default false. |
$comment_id | string | The comment ID as a numeric string. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'comment_notification_notify_author', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'comment_notification_notify_author', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii