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