Home › Forums › Front-end Issues › Need help with WP_Query orderby custom field › Reply To: Need help with WP_Query orderby custom field
I ended up changing my query to get_posts
<?php
// get posts
$posts = get_posts(array(
'post_type' => 'attachment',
'posts_per_page' => -1,
'post_status' => 'any',
'post_parent' => null,
'tax_query' => array(
array(
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => 'vehicle'
)
),
'meta_key' => 'vehicle_sort_order',
'orderby' => 'meta_value date',
'order' => 'DESC'
));
?>
This works, but still curious as to why the WP_Query I initially had wasn’t working.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.