我想按月分组和订购我的CPT,如下:
2017年6月
2017年7月
2017年8月
我通过ACF使用带有datepicker字段('datum')的CPT。我显示当前日期,但未按月过滤。我做错了什么?
到目前为止我所拥有的:
<?php
$the_query = new WP_Query( array(
'post_type' => 'activiteiten',
'post_status' => 'publish',
'meta_key' => 'datum',
'orderby' => 'meta_value',
'posts_per_page' => -1
) );
while ( $the_query->have_posts() ) : $the_query->the_post();
$temp_date = get_post_meta( get_the_ID(), 'datum', true );
if ( $temp_date != $current_header ) {
$current_header = $temp_date;
echo "<div class='sub_category_name_wrapper'><h5>$current_header</h5></div>";
}
?>
<div class="event_content_wrapper">
<ul>
<li>
<span><?php the_field('datum'); ?></span>
<h4><?php the_title(); ?></h4>
</li>
</ul>
</div>
<?php endwhile;
?>