Function to get image from media library

Is it possible to retreive media image directly into the library… Something like get_media (‘all’) and it return a array with image url, caption, description etc etc..

Related posts

Leave a Reply

1 comment

  1. Here you go:

    function get_media_all_wpa14177(){
        $args = array(
            'post_type' => 'attachment',
            'post_mime_type' =>'image',
            'post_status' => 'inherit',
            'posts_per_page' => -1,
        );
        $query_images = new WP_Query( $args );
        $images = array();
        foreach ( $query_images->posts as $image) {
            $images[]= $image->guid;
        }
        return $images;
    }
    

    Usage:

    $Images = get_media_all_wpa14177();