• Hi–

    I’ve figured out how to post a list of recent posts by category, but I’d like to list more than just ten (actually I want to list ALL of them). Any suggestions?

    Here’s the relevant code:
    <li id="categories"><?php _e('Contents'); ?>
    <ul>
    <?php $temp_query = $wp_query; ?>
    <?php query_posts('category_name=chapterstart&order=ASC'); ?>
    <?php while (have_posts()) : the_post(); ?>
    <h5 id="post-<?php the_ID(); ?>">
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
    <?php the_title(); ?></a></h5>
    <?php endwhile; ?>
    <?php $wp_query = $temp_query; ?>

    A visit to the site will probably give a good indication of why I need to do this:

    Moby Blook

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Recent posts by category: how to list more than 10’ is closed to new replies.