Hi to all, I have added in a Product Attributes Class the upload files field.
What code I should to be used to have this array, and what is the correct ACF upload files setup?
$files = array(
'product-attribute-1' => $_SERVER["DOCUMENT_ROOT"].'/wp-content/uploads/sites/ID/aaaa/mm/file-name-1',
'product-attribute-2' => $_SERVER["DOCUMENT_ROOT"].'/wp-content/uploads/sites/ID/aaaa/mm/file-name-2',
'product-attribute-3' => $_SERVER["DOCUMENT_ROOT"].'/wp-content/uploads/sites/ID/aaaa/mm/file-name-3',
...
'product-attribute-last' => $_SERVER["DOCUMENT_ROOT"].'/wp-content/uploads/sites/ID/aaaa/mm/file-name-last',
);
Hi @funkman733
I am not confident that I have understood your question but if you are looking to get the server path for certain field using the File field, you can use a native WP function such as get_attached_file()
You can then echo the values using the the_field(..) function.