diff --git a/src/js/media/models/attachments.js b/src/js/media/models/attachments.js index 2819093093..f80cac42f6 100644 --- a/src/js/media/models/attachments.js +++ b/src/js/media/models/attachments.js @@ -151,14 +151,6 @@ var Attachments = Backbone.Collection.extend(/** @lends wp.media.model.Attachmen */ validator: function( attachment ) { - // Filter out contextually created attachments (e.g. headers, logos, etc.). - if ( - ! _.isUndefined( attachment.attributes.context ) && - '' !== attachment.attributes.context - ) { - return false; - } - if ( ! this.validateDestroyed && attachment.destroyed ) { return false; }