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

时间:2015-02-10 16:48:51

标签: wordpress 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; ?>

我错过了什么/做错了什么?

1 个答案:

答案 0 :(得分:0)

实际上答案很简单。从if语句中获取帖子内容等。

您只想打印一年,但要显示所有帖子。

<?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和文章元素在你想要的地方打开和关闭,但是通过仅使用if语句来回显年份,你的循环的其余部分应该正常进行。