Wordpress:列出作者在author.php中的帖子

时间:2012-10-31 22:28:49

标签: wordpress list posts author

我想在author.php模板中列出10篇作者的最后帖子。 我用了这段代码:

<?php while (have_posts()) : the_post(); ?>
    <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>

但我只能看到当前作者的最后一篇文章。有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

这是代码

  <?php  global $query_string;
         query_posts( $query_string . '&posts_per_page=10' );
         while (have_posts()) : the_post(); ?>
             <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php    endwhile;?>