posts tags and query post
-
Hi all,
I’m using query_posts to show specific post from a category on the home page.. But the problem is, when I click on a post’s tags, it doesn’t bring up the associated post.
Is there something i’m missing?
The code Im using is below
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('cat=11&paged='.$paged); ?> <?php while (have_posts()) : the_post(); ?> Do some stuff here <?php endwhile; ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘posts tags and query post’ is closed to new replies.