Support

Account

Home Forums Add-ons Options Page Using library 'uploadedTo' on an options page Reply To: Using library 'uploadedTo' on an options page

  • Uploaded to post is something that’s built into WP. The post ID is set as the parent of the attachment. There isn’t any way to do this for options pages or for that matter, terms in a taxonomy or any other object in WP.

    I do not recall any topics ever being submitted here that included a solution for this.

    I’m not even sure that it would be possible at all and I’m not sure where you’d start looking. The upload uses the built in WP file upload and works through AJAX. You might be able to add some filters during the process to detect that an attachment is being uploaded for a specific options page, then you could probably add a post meta field to the attachment to indicate what it was uploaded to, and finally you could probably filter the images that are being displayed during the AJAX call that shows these images to only show others that were uploaded for the same options page. However, this is all guess work, you’re probably looking at several hours of research and testing to get each part of this working, that is if it will work, and there’s no way of knowing until you try it.