Horje
wordpress change email new user template Code Example
wordpress change email new user template
//Use the plugin: Welcome Email Editor
// OR:
// CHANGE DEFAULT TEXT MAIL FOR NEW USERS (sent to admin)
add_filter( 'wp_new_user_notification_email_admin', 'custom_wp_new_user_notification_email', 10, 3 );
function custom_wp_new_user_notification_email( $wp_new_user_notification_email, $user, $blogname ) {
    $wp_new_user_notification_email['message'] = sprintf( "%s has been registered!.", $user->user_email );
    return $wp_new_user_notification_email;
}

// CHANGE DEFAULT TEXT MAIL FOR NEW USERS (sent to user)
add_filter( 'wp_new_user_notification_email', 'custom_wp_new_user_notification_email_user', 10, 3 );
function custom_wp_new_user_notification_email_user( $wp_new_user_notification_email, $user, $blogname ) {
    $wp_new_user_notification_email['message'] = sprintf( "%s ha sido registrado en ASTAC!.", $user->user_email );
    return $wp_new_user_notification_email;
}




Php

Related
wpmu assign user to blog Code Example wpmu assign user to blog Code Example
php gd coordinate Code Example php gd coordinate Code Example
twig superglobal request Code Example twig superglobal request Code Example
Change initial country + add top countiries on Caldera forms Code Example Change initial country + add top countiries on Caldera forms Code Example
setup phpmyadmin to show create statement query Code Example setup phpmyadmin to show create statement query Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8