The custom field of one of the plugins contains an array of data. I get this data, but I can't figure out how to make it a readable view for output on the page.
Such data is recorded in the field:
{"1 filename.doc":{"name":"filename.doc","url":"https://example.com/filename.doc","file":"/var/www/example.com/filename.doc","type":"application/msword","size":50688}}
From this I need a name and a link to do something like this:
<a href="https://example.com/filename.doc">filename.doc</a>
I am just learning and I will be grateful for any hint!