php - Order Pages by Custom Field Value -


i have set several pages including custom field numerical value. when querying pages want display them ordered custom field numerical value lowest highest.

this code 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 sorting not working , pages being shown scattered not price order.

can have idea or suggestions in how go ?

i managed sort issue changing

'orderby' => 'meta_value' 

to

'orderby' => 'meta_value_num' 

Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

angularjs - ng-repeat duplicating items after page reload -