Can anyone suggest me what is the function to get all the images stored for wordpress? I just need to list all the images seen under menu Media of the wordpress admin.
Thanks in advance
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Uploaded images are stored as posts with the type “attachment”; use get_posts() with the right parameters. In the Codex entry for get_posts(), this example:
…loops through all the attachments and displays them.
If you just want to get images, as TheDeadMedic commented, you can filter with
'post_mime_type' => 'image'in the arguments.