ユーザーがプロファイル フィールド「Country」または「City」を新しい値で更新すると、新しい値を持つフィールドのみで通知を受け取りたいです。現在、私はこれを使用していますが、どのフィールドが変更されたかはわかりません:
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.');
}
助けていただければ幸いです..