diff --git a/src/wp-admin/js/theme.js b/src/wp-admin/js/theme.js index 7318f3ba5b..2e96e25c19 100644 --- a/src/wp-admin/js/theme.js +++ b/src/wp-admin/js/theme.js @@ -133,7 +133,7 @@ themes.Collection = Backbone.Collection.extend({ // Find results // _.filter and .test results = self.filter( function( data ) { - haystack = _.union( data.get( 'name' ), data.get( 'author' ), data.get( 'tags' ) ); + haystack = _.union( data.get( 'name' ), data.get( 'description' ), data.get( 'author' ), data.get( 'tags' ) ); if ( match.test( data.get( 'author' ) ) ) { data.set( 'displayAuthor', true );