Might be more of a wordpress question, but here goes...

Discussion in 'WordPress' started by quatto, Dec 9, 2010.

  1. #1
    How can I get my "All Web hosting reviews" on the sidebar which came with the theme - not a "custom" widget. alphabetized?

    Need it in alphabetical order...I might be missing something simple...

    Any suggestions?

    Thanks
     
    quatto, Dec 9, 2010 IP
  2. CSM

    CSM Active Member

    Messages:
    1,047
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    55
    #2
    And the theme is?
     
    CSM, Dec 9, 2010 IP
  3. sarahk

    sarahk iTamer Staff

    Messages:
    28,847
    Likes Received:
    4,542
    Best Answers:
    123
    Trophy Points:
    665
    #3
    Your sidebar should be widgetised. Will one of the widgets do the job? At the most basic level there is the text widget which will accept any html
     
    sarahk, Dec 9, 2010 IP
  4. quatto

    quatto Peon

    Messages:
    196
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    <ul>
    <?php query_posts('posts_per_page=-1&orderby=title'); ?>
    <?php while (have_posts()) : the_post(); ?>
    <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
    <?php endwhile; ?>
    </ul>

    This code in my sidebar.php seemed to alphabetize it, but in reverse order...anyone?
     
    quatto, Dec 9, 2010 IP
  5. CSM

    CSM Active Member

    Messages:
    1,047
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    55
    #5
    order=ASC instead of orderby=title
     
    CSM, Dec 9, 2010 IP
  6. quatto

    quatto Peon

    Messages:
    196
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    thanks but it didnt work. just ordered them in the order i published them....
     
    quatto, Dec 9, 2010 IP
  7. CSM

    CSM Active Member

    Messages:
    1,047
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    55
    #7
    CSM, Dec 9, 2010 IP
    quatto likes this.
  8. quatto

    quatto Peon

    Messages:
    196
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    That did it. Thanks you magnificient bastard.
     
    quatto, Dec 9, 2010 IP
  9. CSM

    CSM Active Member

    Messages:
    1,047
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    55
    #9
    Give me rep+ :p
     
    CSM, Dec 9, 2010 IP