How to get most recent post title (and link) for specific author
-
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?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to get most recent post title (and link) for specific author’ is closed to new replies.