我愿意获得这样的Wordpress存档列表:



从其他地方阅读的内容中,我必须创建自己的查询。我并不是一个真正的开发者。这是我的开始:

<ul>
<?php
$args=array(
    'post_type' => 'post',
    'posts_per_page' => '500', /*no limit, how?*/
    'orderby' => 'date',
    'order' => 'DESC',
    );
query_posts($args);
while (have_posts()) : the_post();
?>

<li><?php the_time('j'); ?> | <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>  <?php comments_number( '', '(1)', '(%)' ); ?></li>

<?php endwhile; ?>
</ul>

您可以在这里看到它的外观:
http://www.vie-nomade.com/archives/

我知道需要按月然后按年将所有内容分开。谢谢。

最佳答案

您可能需要考虑与查询所有已发布帖子有关的性能问题。

我有一个类似的列表,但是只显示每个月的帖子总数,总共有70个查询到数据库,如果更改为显示该博客中获得的每个帖子,则最多可以查询531个。 (当然,包括网站上的其他功能)

蒙特利清单:

每个帖子列表:

如果决定使用月度列表,则可以使用wp_get_archives

[/警告结束]

如果写得不多,只有几篇文章,那么您应该寻找这样的东西:

<ul class="years">
<?php
$all_posts = get_posts(array(
  'posts_per_page' => -1 // to show all posts
));

// this variable will contain all the posts in a associative array
// with three levels, for every year, month and posts.

$ordered_posts = array();

foreach ($all_posts as $single) {

  $year  = mysql2date('Y', $single->post_date);
  $month = mysql2date('F', $single->post_date);

  // specifies the position of the current post
  $ordered_posts[$year][$month][] = $single;

}

// iterates the years
foreach ($ordered_posts as $year => $months) { ?>
  <li>

    <h3><?php echo $year ?></h3>

    <ul class="months">
    <?php foreach ($months as $month => $posts ) { // iterates the moths ?>
      <li>
        <h3><?php printf("%s (%d)", $month, count($months[$month])) ?></h3>

        <ul class="posts">
          <?php foreach ($posts as $single ) { // iterates the posts ?>

            <li>
              <?php echo mysql2date('j', $single->post_date) ?> <a href="<?php echo get_permalink($single->ID); ?>"><?php echo get_the_title($single->ID); ?></a>  (<?php echo $single->comment_count ?>)</li>
            </li>

          <?php } // ends foreach $posts ?>
        </ul> <!-- ul.posts -->

      </li>
    <?php } // ends foreach for $months ?>
    </ul> <!-- ul.months -->

  </li> <?php
} // ends foreach for $ordered_posts
?>
</ul><!-- ul.years -->

09-28 11:49
查看更多