Best way to do it manually. By FTP just download the wp-content/uploads directory. If you want to automate this and the media files zip here is a plugin-
downML – Download Media Library
But it’s not updated for more than 2 years. So you have to test it before use it on live site.
There is another solution in my mind. If you can find a PHP Script to zip images from URL you can use this below code to get all the images URLs and create a zip from them. But this script will not very memory friendly.
All images URL code-
$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 );
}
Now you’ll get all the images URLs in $images
.
Related Posts:
- Removing default image size list in Media Box
- How to reduce original image quality on upload?
- Custom image size in Media Dropdown
- Images uploaded using media uploader are appearing upside down
- Can I hide certain upload folders in media library [duplicate]
- Disable auto-resizing of uploaded images, but only for certain filename
- Set spesific size of featured images
- Can’t generate thumbnail images
- Limit dimensions of “Full” size images
- Convert all uploaded PNG files to PNG-8 format
- how can I change all wordpress media file url to custom cdn url?
- Is it possible to limit number of files a non-admin user can upload via the WordPress media library?
- How to add HTML into error message
- restrict uploaded image size and fixed image display size
- Function image_send_to_editor returns emty title tag
- How to overwrite image if it already exists – WordPress, Gravity form
- Missing feature image link function
- Upload Multiple Files With media_handle_upload
- Set JPEG compression for specific custom image sizes
- Issue with wp_get_attachment_image() and SVG file type
- How to change the markup WordPress inserts for post images
- How do I use the WP image functions in a page template?
- Adding a custom image upload size and making it selected by default?
- WP 4.4. responsive loads normal image after loading the responsive image
- There’s a way to scale media (images) at 50%?
- How to make WordPress use protocol indepentent upload files?
- Auto delete WordPress images/thumbnails (all sizes) and featured after X days/hours, or similar?
- Alter media caption/description conflict in WordPress?
- upload featured image from front end using wordpress add media button
- Remove images from get_the_excerpt
- How to add a media with PHP
- Generated Images sizes do not match Media Settings Image Size
- Best way to programatically add “rel” attributes to page and post images
- Overwrite Parent Theme add_image_size in Child Theme
- How can I receive the image id using the media box?
- How to display more audio file ID3 tags in WordPress
- Count total number of images in post and echo results as number
- Automatically wrap multiple images in div
- Change WordPress Media Manager
- Understanding and altering the structure of posted images
- Image rotation fails to regenerate custom sized thumbnail
- Rotating image does not work for custom image sizes
- Featured Image Thumbnail Creation
- Handling image uploads without thickbox
- Automatically assign video ‘poster’ value to ‘filename’ for archive listing
- Restrict media upload size by format
- Display images that are not in the content
- WordPress automatically downscaled images larger that original
- Updating Media Published Date When Parent Post Is Modified in WordPress
- show first 3 thumbnails of posts in different sizes [closed]
- WordPress Media Uploader in page template (On Front-end)
- Ho to add “Create Slider” option to default “Add Media” popup?
- How to upload WordPress Images to remote web server and display those images in WordPress gallery [closed]
- Getting custom image size URL in functions
- Images uploaded to the media library has strange colors. However, in the edit screen the color is ok
- media resize/crop possibilities?
- Set Maximum Width for an uploaded image
- Control the srcset much more (not all sizes in it each time)
- Way to store featured image width and height in two separate variables?
- srcset and custom field get_post_meta and wp_get_attachment_url
- Visual Composer creating own shortcodes with vc_map() to return simple Image
- Get images attached to a specific page
- What are the meta fields for an attachment?
- Can’t locate custom image sizes defined by child theme
- Woocommerce image sizes missing from Appearance › Customize but not declared by theme
- Add attribute only to first image of every post via functions.php
- Need to convert image url to a Base_64 data url with wordpress function..
- Get featured image with custom size outside WordPress
- WordPress creating images if uploaded image is greater than 960px on one side?
- Function to insert missing image size attributes into img tags
- Using add_image_size in functions.php to get original uploaded file
- Serving Images from subdomain in wordpress
- Custom image sizes showing in Classic Editor only when upladed directly to post
- User uploads image as “Featured Image” but WordPress resizes it?
- Profile image does not upload
- How to change images url in function.php?
- Upload error on localhost (at minimum, not yet tested online)
- Class parameter in get_avatar args doesn’t get added to output
- Serving cache from multiple domain names
- Printing medium sized image
- Why am I losing image quality on my site?
- Replace image attributes for lazyload plugin on image elements with specific class
- How to regularly backup and update WordPress website with lot of images?
- Save the outputted image into the Media Library, with a different filename and extension
- Open image size links in a page instead of direct image link
- WordPress Media URLs?
- Function to get thumbnail img source
- Allow authors to create article image
- Media Library is not loading on grid view in admin panel
- Image width issue in IE [closed]
- Blurry Images WordPress 5.8.1
- Rename file after title , one small problem
- How to automatically convert images to WebP on WordPress?
- image_size with respect to aspect ratios
- How to resize image from import image url?
- When the WP_EDITOR button is pressed, the user is prompted to select a photo from their device
- How to crop image in WordPress with aspect ratio for any size of image
- Generate and upload screenshot as featured image for user-submitted post
- How to add height and width dimensions automatically to archive descriptions
- How To Convert External Image URLs To Own Website’s Uploaded Images Automatically?