Repetição QUERY_POSTS
-
Como fazer para não repetir posts no query_posts, exemplo:
<?php query_posts('showposts=1&cat=1');?> <?php if (have_posts()): while (have_posts()) : the_post();?> <a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a> <?php endwhile; else:?> <?php endif;?>
e também tenha na mesma categoria
<?php query_posts('showposts=1&cat=2');?> <?php if (have_posts()): while (have_posts()) : the_post();?> <a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a> <?php endwhile; else:?> <?php endif;?>
No caso de um post esteja nas categorias com ID 1 e 2, repetiria o post, como pode se resolver isso?
Visualizando 2 respostas - 1 até 2 (de um total de 2)
Visualizando 2 respostas - 1 até 2 (de um total de 2)
- O tópico ‘Repetição QUERY_POSTS’ está fechado para novas respostas.