Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I was looking for the exact same plugin and found this: Page Category Organizer after several hours of hunting.

    It took a little while to decipher because it’s really quite flexible in what it can do. Tip: Read the readme file, it’s invaluable.

    I had to hack the output function in pageorgfunctions.php to get it to display in my sidebar properly, but other than that, it worked straight out of the box.

    Demo on my site suezanntoh.com.

    Forum: Plugins
    In reply to: Reverse order posting

    stairway, thanks for pointing me to the right direction! The code you have posted doesn’t behave with paging. That is, I couldn’t get posts 11-20 to show up on page 2.

    My solution is to add this code above The Loop:

    query_posts($query_string."&order=ASC");

    This will make all of the posts in all of your categories ordered to show the oldest post first and the newest post last.

    To reverse order of posts in only one category use this:

    <?php if ($cat==x) {query_posts($query_string."&order=ASC"); } ?>

    Where x in $cat=x is the category ID number.

    Note: if you still don’t know what The Loop is, it starts with this line:

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    The query_post should be ABOVE this line.

Viewing 2 replies - 1 through 2 (of 2 total)