我正在使用WP\\u查询从自定义帖子类型获取所有帖子。这非常适合列出所有帖子。然而,帖子本身有一个自定义的日期字段,我想在H2
标记,列出月份而不重复月份。目前,我可以循环浏览所有帖子,但H2
每个月都会被吐出来。我也不想做月份分类。这些帖子是关于演出日期的。我想列出六月的所有日期,但只有一个H2
六月在里面,然后所有的帖子都在下面。
像这样:
1. June
a. Show date
b. Show date
c. Show date
2. July
a. Show date
b. Show date
c. Show date
而不是这个:
1. June
a. Show date
1. June
b. Show date
1. June
c. Show date
2. July
a. Show date
2. July
b. Show date
2. July
c. Show date
更新的代码:
$current_month = \'\';
while ($query->have_posts()) : $query->the_post();?>
<?php $date = strtotime( get_field(\'date\') ); $month = date(\'F\',$date); ?
<div class="row"><div class="span10">
<h2>
<?php if ($month != $current_month){
$current_month = $month;
echo $month; } ?>