Support

Account

Home Forums Backend Issues (wp-admin) acf_form() attachment to Media Gallery Reply To: acf_form() attachment to Media Gallery

  • Hi again,

    This is the code I used to create the frontend form:

    
    $options = array(
      'id'                    => 'photo-athlete',
      'fields'                => array( 'photo_athlete' ),
      'form'                  => true,
      'submit_value'          => __("Sauvegarder votre photo", 'acf'),
      'instruction_placement' => 'field',
      'updated_message'       => false,
      'uploader'              => 'wp'
      );
    acf_form( $options );
    

    Thanks

    Philippe