Forum Replies Created

Viewing 2 replies - 16 through 17 (of 17 total)
  • Hello Steve,
    You may also want to consider BlogDesk I myself use this. Often I don’t have time to finish all my blogs but would like to save post locally and update straight to my blog.
    Hope that helped
    [sig moderated as per the Forum Rules]

    Hello, I’m sure there are many solutions. You may want to search for a function that could do that. Until then a patch fix would be create a custom category page for each of those categories. Then inside query the post
    Category 1.php

    <?php query_posts('cat=1.1&showposts=1'); ?>
    <?php while (have_posts()) : the_post(); ?>
    Display Content
    <?php endwhile; ?>
    <?php query_posts('cat=1.2&showposts=1'); ?>
    <?php while (have_posts()) : the_post(); ?>
    Display Content
    <?php endwhile; ?>
    <?php query_posts('cat=1.3&showposts=1'); ?>
    <?php while (have_posts()) : the_post(); ?>
    Display Content
    <?php endwhile; ?>

    hope that help

    [sig moderated as per the Forum Rules]

Viewing 2 replies - 16 through 17 (of 17 total)