#23115 closed enhancement (invalid)
Refactor wp.media.gallery.attachments to accept an array of attachment ids rather than shortcode
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | Media | Keywords: | |
Focuses: | Cc: |
Description
In /wp-includes/js/media-editor.js, line 175, the wp.media.gallery.attachments method is too closely coupled to the shortcode. This makes it impossible to fetch Attachments without first creating a shortcode to pass in.
A better approach would be to accept an array of attachment ids or a hash of properties; more than just shortcodes need to fetch Attachments by their ids.
Change History (1)
Note: See
TracTickets for help on using
tickets.
Thanks for the report. That function is a helper for
wp.media.gallery.edit()
, it is not really intended to be used for general-use querying.wp.media.query()
will do that.