How can I attach files without using a plugin?
I have used custom fields in the past to do something kinda like this. You name each custom field the same, and then in the value, give it some separation character. I used ||. Then you can do something like this: $output = array(); foreach($custom as $c) $output[] = explode(‘||’,$c); Then you’ll have an array … Read more