Skip to content

Instantly share code, notes, and snippets.

@Jerl92
Created April 13, 2024 05:29
Show Gist options
  • Select an option

  • Save Jerl92/a06bb5a05f273636677ebb0e25e85daf to your computer and use it in GitHub Desktop.

Select an option

Save Jerl92/a06bb5a05f273636677ebb0e25e85daf to your computer and use it in GitHub Desktop.
Get All Images in Media Gallery
$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 );
}
@Jerl92
Copy link
Author

Jerl92 commented Apr 13, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment