Support

Account

Home Forums General Issues Update_field not working for front end user creation Reply To: Update_field not working for front end user creation

  • You should be testing at the start of your function that it’s only running for your post type

    
    if (get_post_type($post_id) != 'your post type') {
      return;
    }