0
當用戶使用新值更新他們的配置文件字段「Country」或「City」時,我希望僅通知具有新值的字段。 Curently我使用這個,但不知道哪個fiels已被修改:檢查buddypress xprofile中的字段是否具有新值
add_action ('xprofile_updated_profile', 'profile_change_notify');
function profile_change_notify ($vars = array())
{
$user = new WP_User ($vars['user_id']);
wp_mail ('[email protected]', 'Subject (' . $user->user_login . ' just updated the Profile)', 'Message Body goes here.');
}
我感謝所有幫助..