All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.


Author Topic: [Help] Trying to display results of "most rated" post on next page  (Read 214 times)

0 Members and 1 Guest are viewing this topic.

Offline victooor83

  • Newbie
  • *
  • Posts: 7
    • View Profile
  • WordPress Version: WordPress 2.8.x
  • Theme Name: supervideos
I'm using the following code:

<?php query_posts('&r_sortby=highest_rated&r_orderby=desc') ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
...
...
<?php endwhile; ?>


<?php else : ?>

         <h3>no results</h3>

         <p>sorry...</p>

         <?php include (TEMPLATEPATH . "/searchform.php"); ?>

      <?php endif; ?>      

         <div style="clear:both"></div>

         <div class="navigation">

            <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>

         </div>

   

   <?php wp_reset_query (); ?>   

The following pages (2,3,4 ...) are the same content as the first.
What's wrong?