Hello.
I have a custom field of type = File.
The Field Name is project_image
When publishing an article I use this custom field to upload and add multiple images to an article.
In an XML template I display the articles, and the images within each article as follows.
{exp:weblog:entries weblog="work" order_by="entry_id" sort="asc"}
<images>
{project_image}
<image src="{file_url}" >
{/project_image}
</images>
</project>
{/exp:weblog:entries}This all works well.
But I am at a complete loss as to how I would change the order that the project_images display. Could someone please point me in the direction of a technique that would allow me modify the order of the display of the uploaded files?