Description
Filters the content for the email message received by the user when he/she needs to verify their email address.
Arguments
- $message(string) - Your custom message.
Return
(string) The email content sent to the user.
Usage
function b3_email_activation_message_user( $message ) {
return '<a href="%activate_url%">Click here</a> to activate your account.';
}
add_filter( 'b3_email_activation_message_user', 'b3_email_activation_message_user' );
Used in
- admin/preview.php - line 62
- includes/filters-wp.php - line 168