You can always filter on the client side:
var query = wp.media.query();
query.filterWithIds = function(ids) {
return _(this.models.filter(function(c) { return _.contains(ids, c.id); }));
};
var res = query.filterWithIds([6,87]); // change these to your IDs
res.each(function(v){
console.log( v.toJSON() );
});
Disclaimer: found the beautiful filterWithIds
function in this SO question.
Related Posts:
- Refresh wp.media after ajax call
- Trigger JS when featured image upload window is opened in admin
- WP3.5 Media Uploader – how to make it accept multiple images?
- Switch between tabs on “Insert Media” dialog
- Trigger refresh for new media manager in 3.5
- How to add new tab to media upload manager with custom set of images?
- Extend Media Library
- How to make “Upload files”selected by default in Insert Media?
- Reject upload of wrong-sized images using the Media Uploader
- How to show all available images in WP’s media library when using the Polylang plugin?
- How to add a custom field to the media screen (image/gallery)?
- Saving Media – Which Hook is Fired?
- WordPress 3.5: Switch back to Old Media Uploader?
- upload_async.php returns 500 error
- Show only images and videos in a wp.media window
- retrieve custom image sizes from media uploader javascript object
- Add tinymce buttons to caption textarea in media uploader
- Insert images to post not working
- wp_generate_attachment_metadata returns empty array
- Settings in ‘Media > Settings’ is ignored when inserting images
- Set a maximum upload count for users on a specific user role
- How to get all files inserted (but not attached) to a post
- Password protect some uploaded files, so only logged-in users can view them
- How to protect uploads in multisite if user is not logged in?
- using media uploader to select image of specific size, enforce cropper
- Append button to WordPress Image Details modal
- Switch to the library tab in the media uploader
- Modify the array of selected images in media modal
- Media uploader not work properly [closed]
- http error when uploading media files
- Retrieving JSON data in ajax request from media uploader
- How to disable WordPress Media resize different size version?
- Saving WordPress generated thumbnails in a subdirectory
- How to side load an image from a service
- Add select field to media uploader that adds a class to the image
- How to host different file formats/types for a media attachment without creating multiple attachments?
- Retroactively place uploaded media into -month, -year based folders?
- How To install AWS SDK for PHP in wordpress?
- wp.media add context
- Add fields to the WordPress media uploader
- Change default from “Attachment post URL” to “File URL” in Add Media
- How do I modify the url of uploaded media content?
- Why would media_sideload_image() not work locally?
- WordPress bug with capabilities?
- Restrict WordPress Media Library for a specific user role (users can only see/select own media)
- Media upload on WordPress changes title of image
- Uppload image from another source wp.media
- media_handle_upload() progress bar
- move_uploaded_file() not working on wordpress front end
- ‘An error occurred in the upload. Please try again later.’ for users with different roles
- Multiple media uploader buttons target only one input on the same page
- Convert (-) and (escape) signs to (_) when uploading files on wordpress media library automatically
- wrong media url in wordpress
- Move files from flat upload directory to organised by year / month
- Can’t manipulate media uploads
- Prevent small image sizes from being uploaded
- Protecting uploads not working
- How to submit data between wp_iframe and backbone.js in media upload
- How to get the return value of wp.media({ frame: ‘post’ }) in all cases?
- Custom media uploader not showing library
- What is the way to add additional fields to attachments in 3.5+?
- Create featured image from a remote url when creating a post
- tb_show not showing a media upload window . custom plugin
- How can I manage and limit disk usage for each author?
- In the media Rest API, what is “missing_image_sizes”?
- Error: The uploaded file exceeds the upload_max_filesize directive in php.ini [duplicate]
- How can I modify the media upload form fields?
- Migrating media files (documents only) to a fresh install and maintaining the same directory structure
- How does wordpress handle media files?
- WordPress media upload issue could not insert attachment into the database
- Thumbnail images missing in WP media library
- How to disable drag-and-drop upload function in Media Library?
- upload_max_size doesn’t change
- wp_enqueue_media() and upload_mimes problem
- Reattach media after moving to another server
- Better solution for managing media attachments with `wp_editor()`?
- Control resizing of uploaded images
- What if I have a large file on the server that I want the wp library to have?
- Bug: Deleting file, then uploading same file again places file in an old month folder
- Do custom post type (CPT) attachments/media store the parent post ID?
- Create multiple folders in upload media folder
- How to change Route respond To A specific Path?
- WordPress media has all disappeared on wp-admin but still on the server
- How to remove media by filename?
- media_handle_upload() returns Specified file failed upload test
- WP media upload issues
- Media uploads error
- Moving wp-content folder to public_html
- wp.media – media uploader – how to destroy instance of modal?
- get users nickname uploaded media
- Issues with WordPress 3.9.6 media libraries on XAMPP
- Force relative path in media library for LAN deployment
- Used Duplicator to transfer a site. Now my media uploads aren’t working
- How to upload an image using media uploader and return the image link to javascript?
- Set featured link not showing
- I am facing problem in loading and downloading Mp3 files
- How to disable direct media file access in nginx or ubuntu for non loggedin users?
- Updating Media Library PDF’s in bulk
- Does WordPress import export tool keeps the file hosted on the old website?
- How to properly move media files and update data?