Order a WP_Query by meta value where the value is an array
At query level? Not possible. {db_prefix}_postmeta has only one field for value. WP serializes arrays before inserting them and deserializes after they’re out. So you have three choices here: If you really need this sorting at query level (pagination, maybe?) you have to rethink your information architecture and start using a separate custom_post_meta field for … Read more