当用户用新值更新他们的个人资料字段“国家”或“城市”时,我希望只收到具有新值的字段的通知。目前我正在使用它,但不知道哪些字段已被修改:
add_action ('xprofile_updated_profile', 'profile_change_notify');
function profile_change_notify ($vars = array ())
{
$user = new WP_User ($vars['user_id']);
wp_mail ('myname@mydomain.com', 'Subject ( ' . $user->user_login . ' just updated the Profile )', 'Message Body goes here.');
}
我很感激任何帮助..