WordPress:在高级自定义字段中按年份显示帖子

WordPress: Display Posts by Year Set in Advanced Custom Fields

我正在尝试根据在高级自定义字段日期选择器中输入的内容(而不是发布年份)按年份组织帖子。我已经能够使用在以下位置找到的年份检查器非常接近我正在寻找的内容:http://alex.leonard.ie/2009/08/27/wordpress-grouping-posts-by-monthyear/

我想要完成的是:

2015

2014

2013

唯一的问题是,虽然我能够成功打印年份,但每年只列出了一个展览。

    <?php if (have_posts()) : ?>
    <?php
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    $today = date('Ymd');

    $past_args = array(
        'paged' => $paged,
        'posts_per_page' => -1,
        'post_type' => 'exhibitions',
        'meta_query' => array (
            array (
                'key' => 'end_date',
                'value' => $today,
                'compare' => '<',
                'type' => 'DATE'
            )
        ),
        'orderby' => 'meta_value_num',
        'order' => 'DESC'                   
    );
    query_posts( $past_args );
    ?> 


    <!-- PAST EXHIBITIONS -->
    <?php while (have_posts()) : the_post(); ?>

    <?php   
        $date = get_field('end_date');
        $past_year = DateTime::createFromFormat('Ymd', $date);
        $year = $past_year->format('Y');

        if ($year !== $today) { ?>
            <article class="year-<?php echo $year; ?> child-page four columns">
            <h2><?php echo $year; ?></h2>
            <ul>
                <li>
                    <a href="<?php the_permalink(); ?>">
                        <?php the_title(); ?>
                    </a>
                </li>
            </ul>
            </article>
        <?php }

        $today = $year; ?>

    <?php endwhile; ?>
    <?php endif; ?>

我missing/doing哪里错了?

其实答案很简单。从 if 语句中取出 post 内容等。

您只想打印一次年份,但要显示所有 posts。

<?php while (have_posts()) : the_post(); ?>

<?php   
    $date = get_field('end_date');
    $past_year = DateTime::createFromFormat('Ymd', $date);
    $year = $past_year->format('Y');

    if ($year !== $today) { ?>
        <h2><?php echo $year; ?></h2>
    <?php } ?>
    <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    <?php $today = $year; ?>

<?php endwhile; ?>

您必须尝试一下才能让 ul 和 article 元素在您想要的位置打开和关闭,但是通过仅使用 if 语句来回显年份,循环的其余部分应该会照常进行。