query_posts
-
Hi,
I have a review page on my site that displays all post with the tag ‘Review’, however is is only show 6 at anytime, which is the same as my settings for total number of posts per page. Is there a way of overriding this to show all posts.
Here is the page:
Here is my code:
<?php query_posts('&orderby=title&order=asc&tag=review');?> <?php if (have_posts()) : ?> <ul id="review-list"> <?php while (have_posts()) : the_post(); ?> <li class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Read review for <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>Thanks in advance
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘query_posts’ is closed to new replies.