Hi. thx for seeing this.
I need to display posts from 2 particular categories.
I always used this code for displaying 1 categorie:
<?php $my_query = new WP_Query('category_name=reviews&showposts=10'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?>
<h2><a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(''); ?>
<a>" class="more">Leer más</a>
<?php endwhile; ?>
Is there some way to do something like {<?php $my_query = new WP_Query('category_name=reviews, news&showposts=10'); ?> }??
Did i explain my self? :D