Continuous listing from a custom field
I have posts with custom fields called "cb_vote_nb_vote" which holds the vote count for every post, what I want to do is let's say posts under A category will be listed based on vote count, I do that and show numbers with:
query_posts('cat=47meta_key=cb_vote_nb_voteorderby=meta_valueorder=DESC');
if(have_posts()) :
while(have_posts()) : the_post() ; echo "div id='listing'"; echo $wp_query-current_post +1; echo "/div"; ?
but the problem here is when you go to the new page it starts from number 1 obviously. How can I achieve that so the listing continues from the previous page?