Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Removes the email and IP address from the Discord notification.
- *
- * @param array $fields
- * @param \GeminiLabs\SiteReviews\Review $review
- * @return array
- */
- add_filter('site-reviews/discord/fields', function ($fields, $review) {
- unset($fields['email']);
- unset($fields['ip_address']);
- return $fields;
- }, 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement