Support

Account

Home Forums General Issues Sorting by ACF field on get_pages Reply To: Sorting by ACF field on get_pages

  • Hi @leanne-oleary

    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