Search Media by taxonomy
To search, use the s option as described in the WP_Query documentation https://codex.wordpress.org/Class_Reference/WP_Query#Search_Parameter Search Parameter Show posts based on a keyword search. s (string) – Search keyword. Show Posts based on a keyword search Display posts that match the search term “keyword”: $query = new WP_Query( array( ‘s’ => ‘keyword’ ) ); Prepending a term … Read more