我想在单个页面上显示所有 Wordpress 帖子,并让结果显示如下示例:
九月的帖子(当月)
1- 第一个帖子 2- 第二个帖子 3- 第三个帖子
下个月的帖子
2- 第一个帖子 2- 第二个帖子 3- 第三个帖子
我已经完成了这个结果来显示按月排序的所有帖子,但是我无法对它们进行分组并使帖子每个月显示为一个组:
<?php
$month = date('M');
$arrgs = array('orderby' => $month);
$myposts = get_posts($arrgs);
foreach($myposts as $post) :
setup_postdata($post);
?>
<div class="post-item">
<div class="post-info">
<h2 class="post-title">
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
</h2>
<p class="post-meta">Posted by <?php the_author(); ?> Published in <strong><?php echo $month; ?></strong></p>
</div>
</div>
<?php endforeach; wp_reset_postdata(); ?>