Home › Forums › General Issues › Sorting by ACF field on get_pages › Reply To: Sorting by ACF field on get_pages
You could look to try something like:
$args = array(
'post_type' => 'page',
'meta_query' => array(
'relation' => 'AND',
'template_clause' => array(
'key' => '_wp_page_template',
'value' => 'unit.php',
),
'status_clause' => array(
'key' => 'status',
'compare' => 'EXISTS',
),
),
'orderby' => array(
'status_clause' => 'DESC',
),
);
$loop = new WP_Query( $args );
As per the WP Docs
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.