wpDiscuz 7 API Documentation

  1. Home
  2. Docs
  3. wpDiscuz 7 API Documentation
  4. Filters
  5. wpdiscuz_feedback_commenter_email
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

wpdiscuz_feedback_commenter_email

This filter can be used for changing the email of the Inline Comment author.

Changelog

since 7.3.0 version

Parameters

$email – the email of the Inline Comment author. In the case of registered users it matches with the current user email.

Usage

add_filter("wpdiscuz_feedback_commenter_email", function ($email) { 
      return uniqid() . "@example.com"; 
});

Was this article helpful to you? Yes 1 No