Support

Account

Home Forums Front-end Issues No fields in front end Reply To: No fields in front end

  • Sorry, James, but I’m still struggling here.

    acf_form( array (
    	'post_id' => 'new_post',
    	'post_title' => true,
    	'post_content' => true,
    	'new_post' => array(
    		'post_content' => 'something',
    		'post_status'	=> 'draft'
    	),
    	'submit_value' => __("Post Casting", 'acf'),
    	'updated_message' => __("Casting Posted for Moderation", 'acf'),
    ));
    

    How, in this form, can I change it to see the standard WP fields “Content” and “Title” and my ACF field, “contact_email”?

    I really can find where to add those fields (and the default forms on in the docs don’t work for me either).