Support

Account

Home Forums Front-end Issues acf_form in more then one blog

Solved

acf_form in more then one blog

  • Hello,

    we are working on more then one blog.
    When we have updates, we have to change everytime the field_group ID.

    <?php acf_form(array(
    'post_id'=> 'new_project',
    'field_groups' => array ( 1111 )
    )); ?>

    Now we want to change this variable dynamically.
    Please help

  • Hi @podenwald

    If the field group title is the same between those blogs, I believe you can do it like this:

    // Set the field group title you want to search
    $group_title = "Field Group Title";
    
    // Get the field group post data
    $field_groups = get_posts(array( 
        'title' => $group_title,
        'post_type' => 'acf-field-group',
    ));
    
    acf_form(array(
        'post_id'=> 'new_project',
        // Show the first returned field group
        'field_groups' => array ( $field_groups[0]->ID )
    ));

    I hope this helps 🙂

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘acf_form in more then one blog’ is closed to new replies.