• Resolved s0what

    (@s0what)


    Hi! I use Arthemia theme and it uses following code to display latest post titles from one category:

    <?php $recent = new WP_Query("cat=3&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
    
    <li><a href="<?php the_permalink(); ?>" rel="bookmark">
    <?php the_title(); ?></a></li>
    
    <?php endwhile; ?>

    but it doesn’t work on WP 3.0 beta 1

Viewing 2 replies - 1 through 2 (of 2 total)
  • MichaelH

    (@michaelh)

    Works fine for me when I put that in the twentyten theme’s index.php

    Thread Starter s0what

    (@s0what)

    I found that it doesn’t work, because category 3 doesn’t exist anymore.
    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Get latest post titles from one category’ is closed to new replies.