Forums

[resolved] Can i reorder posts? (9 posts)

  1. elroy81
    Member
    Posted 3 years ago #

    Hi i have a soccer site http://www.footballkitsonline.com and on the home page i have a list of teams listed under the Title 'English Teams'. They are in alphabetical order but every time i try to add a new team for example Hull City the post is listed above Arsenal. Is there a way i can reorder the teams?

    <h2>English Clubs</h2>

    <?php $recent = new WP_Query("cat=1&showposts=16"); while($recent->have_posts()) : $recent->the_post();?>
    <b>" rel="bookmark"><?php the_title(); ?></b>

    <?php endwhile; ?>

    This is the current code.

    Thanks

  2. Otto
    Tech Ninja
    Posted 3 years ago #

    You should be able to add "orderby=title" to your query. Try that.

  3. elroy81
    Member
    Posted 3 years ago #

    Hi thanks for the response. Where would i add this in the code? Sorry im quite new to all this.

  4. moshu
    Member
    Posted 3 years ago #

    You posted this query:
    WP_Query("cat=1&showposts=16");
    and Otto said: add to your query. So, make it another parameter in that query... &orderby=title

  5. elroy81
    Member
    Posted 3 years ago #

    Thanks that sort of worked. If i was to add say Hull City it would be in the correct order. The only prob i have now is the teams are listed from the bottom up, instead of the top down.

    Bolton Arsenal
    Blackburn Instead of Aston Villa
    Aston Villa Blackburn
    Arsenal Bolton

    Any ideas?

    Thanks for your help so far.

  6. elroy81
    Member
    Posted 3 years ago #

    Sorry

    Bolton
    Blackburn
    Aston Villa
    Arsenal

    Instead of

    Arsenal
    Aston Villa
    Blackburn
    Bolton

  7. Otto
    Tech Ninja
    Posted 3 years ago #

    Add order=ASC to it as well.

  8. elroy81
    Member
    Posted 3 years ago #

    Thanks Otto42 and moshu. That works a treat!

    Much Appriciated.

  9. mangal_pandey1
    Member
    Posted 3 years ago #

    I simply caught hold of this wonderful plugin Default Sort Ascend by Dennis Steed :D

    Now my posts are older first..

    Check here: http://hostingwebsitecoupons.com

    Cheers,
    KD

Topic Closed

This topic has been closed to new replies.

About this Topic