Multiple custom fields for ‘orderby’ in ‘WP_Query’

Question

I am trying to order blog posts by ‘city’ first and then order by ‘street_name’ within each city. I can’t seem to get the ‘street_name’ to display in alphabetical order. I am using WP_Query:

                <?php
                $args = array(
                    'post_type'=> 'property',
                    'meta_query' => array(
                                array(
                                    'relation' => 'AND' ,
                                    array(
                                        'meta_key' => 'city',
                                        'orderby' => 'meta_value',
                                        'order' => 'ASC'
                                    ),
                                    array(
                                        'meta_key' => 'street_name',
                                        'orderby' => 'meta_value',
                                        'order' => 'ASC'
                                    ),
                                )

),
Any ideas?

0
bhood 3 years 2020-04-04T00:55:33-05:00 0 Answers 60 views 0

Leave an answer

Browse
Browse