4
Fellas, I’m trying to edit a array
, so that it can provide me with the information in ascending or descending order.
I’m doing it this way:
$Recent_Page = get_post_meta(get_the_ID(), 'imic_home_recent_property_no', true);
query_posts(array('post_type'=>'property', 'post_status'=>'publish', 'orderby'=>'ID', 'order'=>'ASC','posts_per_page', =>$Recent_Page));
Nothing happens. What can I be missing?