I had this code running fine forever. Some days ago it just started outputting nothing (just the <ul></ul>
). No errors in logs:
<ul style="margin-left:0"> <?php query_posts('tag=pp&showposts=4'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>
Of course there are posts with that tag.