path.'views/metabox/user-profile-fields.php'; } public function profile_update($user_id){ $_tutor_profile_job_title = sanitize_text_field(tutor_utils()->avalue_dot('_tutor_profile_job_title', $_POST)); $_tutor_profile_bio = wp_kses_post(tutor_utils()->avalue_dot('_tutor_profile_bio', $_POST)); $_tutor_profile_photo = sanitize_text_field(tutor_utils()->avalue_dot('_tutor_profile_photo', $_POST)); update_user_meta($user_id, '_tutor_profile_job_title', $_tutor_profile_job_title); update_user_meta($user_id, '_tutor_profile_bio', $_tutor_profile_bio); update_user_meta($user_id, '_tutor_profile_photo', $_tutor_profile_photo); } }