Sorting records
-
Hello. I have a query:
$args = array( 'cache_results' => false, 'update_post_meta_cache' => false, 'update_post_term_cache' => false, 'post_type' => 'estate_property', 'post_status' => 'publish', 'paged' => $paged, //1 'posts_per_page' => $prop_no, // 10 'meta_key' => $meta_order, // 'empty' 'tax_query' => $tax_array, array[filled array] 'meta_query' => $meta_array, );
how can i sort by post_title ? Or by creation date? or by price? (meta property_price)
when added to
array ('meta_key' => $meta_order, // 'prop_featured' [orderby] => meta_value_num [order] => DESC or ASC)
nothing changes. what to do?The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Sorting records’ is closed to new replies.