• Hi, i’d like to know how to sort the categories by name and not by the id as it is done by default, i would like a code example since i’m not very good yet ??
    Thanks in advance.

Viewing 1 replies (of 1 total)
  • You mean in alphabetical order?
    Try this in your index.php file:
    <!-- Category -->
    <li id="categories">Category Archives:

      <form action="<?php echo $PHP_SELF ?>" method="get">
      <?php dropdown_cats('1','all','name','asc'); ?>
      <input type="submit" name="submit" value="view" />
      </form>

    This is from my blog, but bear in mind I’m using a dropdown box for my categories because I have so many; otherwise, they’d string down the page in an unsightly manner.
    ‘HTH

Viewing 1 replies (of 1 total)
  • The topic ‘Categories ‘id’ and ‘name’’ is closed to new replies.