How to rank custom post type from score points
You can run a WP_Query to get all the posts from post_type casinos and sort them with the custom field value casino_rank_score. Then you can further process it to display ranks. $args = array( ‘post_type’ => ‘casinos’, ‘meta_key’ => ‘casino_rank_score’, ‘orderby’ => ‘meta_value_num’, ‘posts_per_page’ => 350, ‘ignore_sticky_posts’ => 1, ); $my_query = new WP_Query( $args … Read more