Support

Account

Home Forums General Issues Delete the data from post meta table as per post id Reply To: Delete the data from post meta table as per post id

  • Hi @adi-aman

    To do that, you can use the update_field() function to set the value to empty. It should be something like this:

    update_field('repeater_field_name', array(), 99);

    Where “99” is the post ID where the custom field is assigned.

    I hope this helps. If you have any other questions, feel free to ask me again 🙂