2

我愿意实现这样的 Wordpress 存档列表:

2013

五月 (2)

04 - 我喜欢 Wordpress(3 条评论)
01 - 我真的很喜欢 Wordpress(1 条评论)

二月 (1)

02 - 我喜欢 Wordpress 吗?

2012

...

根据我在其他地方读到的内容,我必须创建自己的查询。我并不是真正的开发人员。这是我开始的:

<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/

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

4

1 回答 1

9

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

我有一个类似的列表,但只显示每个月的帖子数量,总共有 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 -->
于 2013-05-04T22:19:20.877 回答