• Basically, the most simple way to explain this is: I want to display more posts from that author within one of there posts.

    So if you click on a post it shows 3 more posts titles and a excerpt underneath from that author.

    This what i have at the moment:

    <?php
          // need to get the author id for the user who hase created the post and throw it in below
    	  $recent = new WP_Query("author=&cat=11&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
          <a href="<?php the_permalink() ?>" class="grey" rel="bookmark">
          <?php the_title(); ?>
          </a>
          <?php endwhile; ?>

    Cheers
    GF

  • The topic ‘View more posts from that author in the authors post.’ is closed to new replies.