WC_Comments::comment_moderation_recipients
Modify recipient of review email.
Method of the class: WC_Comments{}
No Hooks.
Returns
Array.
Usage
$result = WC_Comments::comment_moderation_recipients( $emails, $comment_id );
- $emails(array) (required)
- Emails.
- $comment_id(int) (required)
- Comment ID.
WC_Comments::comment_moderation_recipients() WC Comments::comment moderation recipients code WC 10.3.6
public static function comment_moderation_recipients( $emails, $comment_id ) {
$comment = get_comment( $comment_id );
if ( $comment && 'product' === get_post_type( $comment->comment_post_ID ) ) {
$emails = array( get_option( 'admin_email' ) );
}
return $emails;
}