I am trying to find some way when using WP_Query of ordering by multiple meta_values. I know I can order by multiple values and I know how to order by meta_values but I cant seem to figure out how to do multiple meta_values. Is it possible ?
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
|
||||
|
|
|
you can also store it like yyyy-mm-dd and and use
to make it into an easy to manage array. or even better change it into a unix timestamp with
php loves to work with unix time stamps, it's the native format. and when you're ready to store the value again in the meta field use this to get the proper format again
|
|||
|
|
|
As far as I can tell this is currently impossible, but in my case anyway I was doing dates so I just stored the date as a string in format yyyymmdd and ordered it by that, using strlen to sort it out on the other side |
|||
|
|