【问题标题】:Wordpress: list author's posts in author.phpWordpress:在 author.php 中列出作者的帖子
【发布时间】:2012-11-02 00:28:24
【问题描述】:

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

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

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

【问题讨论】:

标签: wordpress list posts author


【解决方案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;?>

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2023-03-09
    • 1970-01-01
    • 2013-10-11
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-01-08
    相关资源
    最近更新 更多