<?php
acf_form(array(
'post_id' => 'new_post',
'post_title' => true,
'new_post' => array(
'post_type' => 'post',
'meta_input' => array(
'task_customer' => $current_user->ID,
),
),
'submit_value' => 'Создать'
));
?>