I try to build page where user can fill the form (using my custom ACF PRO fields) and save it as a post. Then admin need to check it and publish if everything is OK. So far I have form based on custom post type and ACF fields work good so far. But I need to display checkboxes with native WP categories on the frontend post creator. At this moment user can't select categories from the list on the frontend. It can be done on the backend after the draft is saved.
How can I display list of checkboxes with my WP post categories ALSO on the frontend while user is filling ACF frontend form?
This is my ACF form array:
acf_form(array(
'post_id' => 'new_post',
'post_title' => true,
'submit_value' => 'Add new',
'new_post' => array(
'post_type' => 'games',
'post_status' => 'draft'),
));