Support

Account

Home Forums ACF PRO Programatically adding field group and fields to the (or an) options page Reply To: Programatically adding field group and fields to the (or an) options page

  • Your field group is in a nested array

    
    $siteOptions = array(
      array(
        // field group settings
      )
    );
    

    remove the nesting

    
    $siteOptions = array(
      // field group settings
    )