Renames the specified standard POST field.
$au.uploader('uploaderID').metadata().renameStandardField(originalName, newName);
Type: String
The name of the standard POST field to rename.
Type: String
The new fields name.
Both originalName and newName parameters can contain particular indices or use the following placeholders:
Current index of the file.
u.metadata().renameStandardField("Description_[itemIndex]", "MyDescription_[itemIndex]");
Current index of the converted file.
u.metadata().renameStandardField("File[converterIndex]Mode_[itemIndex]", "MyFile[converterIndex]Mode_[itemIndex]");
Name of the extracted EXIF of IPTC field.
u.metadata().renameStandardField("[tagName]_[itemIndex]", "My[tagName]_[itemIndex]");