PHP wp_list_categories help

Discussion in 'WordPress' started by sixrfan, Mar 9, 2010.

  1. #1
    i have an additional question.
    my page is now located here: http://www.diveneycue.com/. how do i edit the wp_list_pages code so that the first few categories are in this order:
    $0 – $199
    $200 – $499
    $500-1000
    $1000+

    and then the rest of the Diveney Cues subcategories appear in alphabetical order????

    <div id="leftside">  <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Main Sidebar') ) : else : ?>  <h2 class="hide">Main menu:</h2> <ul class="page"> <?php if (is_page()) { $highlight = "page_item"; } else {$highlight = "page_item current_page_item"; } ?> <li class="<?php echo $highlight; ?>"><a href="<?php bloginfo('url'); ?>">Home</a></li> <?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?> </ul>  <?php endif; ?>  </div>
    Code (markup):

    please advise. thanks!
     
    sixrfan, Mar 9, 2010 IP
  2. digitalworkstation

    digitalworkstation Peon

    Messages:
    11
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hi, i think it is already in order because it's character so it sort out as 0 to 5, the $1000+ are also start with 1 to overcome this try add space -> $ 1000+
     
    digitalworkstation, Mar 10, 2010 IP