Hi,
I am attempting to retrieve the most recent post from a specific author.
What I have is this:
<?php wp_reset_query(); $temp_query = $wp_query; ?>
<?php query_posts("author=1&showposts=1"); ?>
<?php while (have_posts()) : the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php endwhile; ?>
I know the author=1 is the Author ID.
Why will this NOT return the most recent post?