Short of raw SQL, can I query for multiple attachment metadata that have a given array key?
While you can do this with WP_Query, I’d do this the way you are trying to avoid– save a list in a separate key. The “pros” strongly outweigh the “cons” in my mind. LIKE queries with wildcards, especially with leading wildcards, are not efficient– aka, “slow” and a LIKE query on serialized data is going … Read more