Title: front end forms
Last modified: August 31, 2016

---

# front end forms

 *  Resolved [dxlwebs](https://wordpress.org/support/users/dxlwebs/)
 * (@dxlwebs)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/front-end-forms/)
 * Hi there,
    love your plugin and i’m going deeper into it with user interaction
   as well and I’m wondering how i can call a specific field group? on the front
   end?
 *     ```
       $groupid = 22321;
       CFS()->form->load_assets($groupid);
       $params = array(
           'post_id' => false, // by default, add new post
           'post_title' => false, // set to true to edit the title
           'post_content' => false, // set to true to edit the content
           'post_category' => 112, // set to true to edit the content
           'excluded_fields' => array(), // array of field names
           'confirmation_url' => '', // redirect URL
           'submit_label' => 'Submit',
       );
       ```
   
 * [https://wordpress.org/plugins/custom-field-suite/](https://wordpress.org/plugins/custom-field-suite/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Matt Gibbs](https://wordpress.org/support/users/mgibbs189/)
 * (@mgibbs189)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/front-end-forms/#post-7017714)
 * There’s a `field_groups` param too.
 *     ```
       CFS()->form->load_assets();
       $params = array(
           'post_title' => false,
           'post_content' => false,
           'field_groups' => array( 22321 ),
       );
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘front end forms’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/custom-field-suite.svg)
 * [Custom Field Suite](https://wordpress.org/plugins/custom-field-suite/)
 * [Support Threads](https://wordpress.org/support/plugin/custom-field-suite/)
 * [Active Topics](https://wordpress.org/support/plugin/custom-field-suite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/custom-field-suite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/custom-field-suite/reviews/)

## Tags

 * [front end form](https://wordpress.org/support/topic-tag/front-end-form/)

 * 1 reply
 * 2 participants
 * Last reply from: [Matt Gibbs](https://wordpress.org/support/users/mgibbs189/)
 * Last activity: [10 years, 1 month ago](https://wordpress.org/support/topic/front-end-forms/#post-7017714)
 * Status: resolved