RCB
RCB

Reputation: 99

Order Pages by Custom Field Value

I have set up several pages including a custom field with a numerical value. When I am querying the pages I want to display them ordered by the custom field numerical value from lowest to highest.

This is the code I am using:

<?php 
    query_posts(array('showposts' => -1, 'orderby' => 'meta_value', 'meta_key' => 'price-medium', 'order' => 'ASC', 'post_parent' => 1286, 'post_type' => 'page'));
    ?> 

For som reason the sorting is not working and pages are being shown scattered not by price order.

Can anyone have any idea or suggestions in how to go about this ?

Upvotes: 1

Views: 36

Answers (1)

RCB
RCB

Reputation: 99

I managed to sort this issue by changing the

'orderby' => 'meta_value'

to

'orderby' => 'meta_value_num'

Upvotes: 1

Related Questions