Support

Account

Home Forums General Issues Problem using update_field with user field Reply To: Problem using update_field with user field

  • Hi @esedeerre

    Hmm… On wp-admin, ACF saves the user ID as a string and that is why you get this: a:1:{i:0;s:1:”1″;} therefore you should pass a string array of user IDs in update_field(…) to obtain the same results as in wp_admin i.e. something like this: array('1', '2', '3', ...);