Is there a way to get attachments by user? I need a way to display all the images uploaded by a specific user. (I probably need the attachment IDs so that I can use wp_get_attachment_url
to display them.)
Leave a Reply
You must be logged in to post a comment.
Use a custom query for this.
This will show all the attachment titles for user with user id 1. You can use
get_the_ID()
in the loop to get the attachment ID.