• <ul>
       <?php query_posts('cat=4'); ?>
       <?php while (have_posts()) : the_post(); ?>
       <li><a href='<?php the_permalink() ?>'><?php the_title(); ?> <span class="readMore">read story>></span></a>
       </li>
       <?php endwhile; ?>
    </ul>

    Does anyone see anything wrong with this?

    I’m just trying ot show the most recent posts in category 4

  • The topic ‘Query Posts not showing up in Safari’ is closed to new replies.