BP_Email_Participant::get_name()
Gets the email name of the user.
Description Description
Return Return
(string)
Source Source
File: bp-core/classes/class-bp-email-participant.php
public function get_name() {
/**
* Filters an email user's name before it's returned.
*
* @since 5.0.0
*
* @param string $name Recipient's name.
* @param BP_Email_User $user Current instance of the email user class.
*/
return apply_filters( 'bp_email_recipient_get_name', $this->name, $this );
}
Changelog Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |