post ordering question

Use a custom field named ‘order’ in each post. Remove the field from posts you do not want to display. Then call the WP_Query object to sort the order field numerically (meta_value_num) skipping any values less or equal to 0 (like in the meta_query below). $posts = new WP_Query( array( ‘orderby’ => ‘meta_value_num’, ‘meta_key’ => … Read more