Support

Account

Home Forums Add-ons Repeater Field Update sub field before/after save post Reply To: Update sub field before/after save post

  • In case anyone ever reads this, solved with:

    add_action( 'update_post_meta', 'update_post', 10, 4 );

    …and removing the return at the end.