We'll create fresh WordPress site with WP Edit Username installed. You have 20 minutes to test the plugin after that site we'll be deleted.
This plugin adds feature to edit/change user username.
wp_username_changed_email_subject
.wp_username_changed_email_body
.<?php
add_filter( "wp_username_changed_email_subject", "your_function", 10, 3 );
your_function( $subject, $old_username, $new_username )
{
$subject = 'Your customized subject';
return $subject;
}
add_filter( "wp_username_changed_email_body", "your_function", 10, 3 );
function your_function( $email_body, $old_username, $new_username )
{
$email_body = "Your custom email text body.";
return $email_body;
}
?>
Interested in contributing to WP Edit Username?
Contact me sagorh672(at)gmail.com