Support

Account

Home Forums Front-end Issues Front-End Posting (CPT) in Genesis Reply To: Front-End Posting (CPT) in Genesis

  • To edit a post that already exists you would add the acf_form() code to the template that shows the post and instead of using “new_band” for the post ID you would us the current post id

    
    'post_id' => $post->ID,
    

    or just not include that argument at all and ACF will automatically use the current post ID.