Recent

wzkb_send_low_rating_notification filter Pro only

wzkb_send_low_rating_notification

Filter whether to send low rating notification.

Type: filter
Since: 3.0.0
Source: includes/rating/class-rating-email.php line 65

Parameters

TypeNameDescription
bool$sendWhether to send notification.
int$post_idPost ID.
int$ratingRating value.
string$feedbackFeedback text.
string$modeRating mode.
array$statsRating statistics.

Usage

add_filter( 'wzkb_send_low_rating_notification', function($send, $post_id, $rating, $feedback, $mode, $stats) {
    // ...
    return $send;
} );