La variable $categoria la obtuve anteriormente por medio de una función de Wordpress. Si le doy echo a $categoria dentro del loop si muestra el ID correspondiente, pero parece como si el loop no le hiciera caso:
Código PHP:
Ver original
<?php $events_query = new WP_Query("'cat=".$categoria."&posts_per_page=3'"); ?> <?php $postnum = 0;?> <?php if(have_posts()) : ?><?php while($events_query->have_posts()) : $postnum = $postnum + 1; $events_query->the_post(); ?> <?php if ($postnum > 1 ) { ?> <div class="cuadrorelated"> <div class="imagenrelated"> <?php if(has_post_thumbnail()) { ?> <?php the_post_thumbnail('posthumb'); ?> <?php } else {?> <img src="<?php bloginfo('template_directory'); ?>/images/hemeroteca.jpg" /> <?php } ?> <h1 class="negrocentro"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> </div> </div> <?php } ?> <?php endwhile; ?> <?php endif; ?>
Ojalá me pudieran ayudar. Gracias