logo

This is an old version of this answer!

Return to the current answer
When you call
$recent->the_post()
all template tags like
the_title()
and
the_content()
will be seted to the $recent query.

To set the template tags to original text again just call the
the_post()


This should solve your problem:
<div id="right-content"><?php the_post() ?>

Julio Protzek | 02/07/10 at 12:58am

This is an old version of this answer!

Return to the current answer