PHP
<?php $my_query = new WP_Query('[COLOR="Red"]category_name=featured[/COLOR]&showposts=1');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php endwhile; ?>
Hast du das Beispiel unverändert übernommen? Du hast doch sicher keine Kategorie "featured"...
Welche Parameter du an das WP_Query-Objekt übergeben kannst siehst du hier:
Template Tags/query posts WordPress Codex