Hello,
Im making a theme wich has last post on the left and 10 last post titles on the right.
For the left side i used:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : query_posts('showposts=1'); the_post(); ?>
For the right:
<?php query_posts("showposts=10&offset=1"); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
Its all in index.php
The problem is when clicking on a tag it shows only 1 post related to that tag.
Is there any way to show more then one tag, maybe with special page for tags?
I used custom page for regular search and it works.
Thanks.