Support

Account

Home Forums Front-end Issues Custom post with ACF – order by ACF field Reply To: Custom post with ACF – order by ACF field

  • Try this and let me know what you get:

    $args = array( 
        'post_type' => 'cars', 
        'posts_per_page' => 999,
        'meta_key' => 'price',
        'meta_type' => 'NUMERIC',
        'orderby' => 'meta_value_num',
        'order' => 'ASC'                        
    );