Created
April 13, 2024 05:29
-
-
Save Jerl92/a06bb5a05f273636677ebb0e25e85daf to your computer and use it in GitHub Desktop.
Get All Images in Media Gallery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $query_images_args = array( | |
| 'post_type' => 'attachment', | |
| 'post_mime_type' => 'image', | |
| 'post_status' => 'inherit', | |
| 'posts_per_page' => - 1, | |
| ); | |
| $query_images = new WP_Query( $query_images_args ); | |
| $images = array(); | |
| foreach ( $query_images->posts as $image ) { | |
| $images[] = wp_get_attachment_url( $image->ID ); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://wordpress.stackexchange.com/questions/11662/get-all-images-in-media-gallery