首页 > 解决方案 > WP Query post by year in 手风琴

问题描述

我正在尝试按以下顺序获取推荐(自定义帖子类型)。

在此处输入图像描述

我可以使用 WP_Query 类轻松检索帖子,但难以创建手风琴,如上面的屏幕截图所示。

标签: phpwordpressaccordioncustom-post-type

解决方案


尝试使用自定义选择查询并使用 post_type 的推荐循环遍历每个帖子。

然后遍历结果并将WP_Query() class date_query参数设置为自定义选择查询结果获得的年份数组。

global $wpdb;

$posts = $wpdb->posts;

//Get all unique years as "years" from posts where post type is equal to testimonials

$sql = "SELECT DISTINCT(YEAR(`post_date`)) as years FROM $posts WHERE post_type = 'testimonials' ORDER BY years DESC"; //Get all post year list by DESC


//Loop through all results and use date_query param https://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters


$result = $wpdb->get_results($sql);

foreach($result as $rs) {
    echo '<h2>'.$rs->years.'</h2>';
    $args = array(
        'post_type' => 'testimonials',
        'post_per_page'=> -1,
        'post_status' => 'publish',
        'orderby'   => 'date',
        'order' => 'DESC',
        'date_query' => array(array(
            'year'=> $rs->years,
        ),),

    );

     $loop = new WP_Query($args);

     if($loop->have_posts()) {

        while($loop->have_posts()) : $loop->the_post();

            echo '<a href="'.get_permalink().'">'.get_the_date().'</a>';
        endwhile;

     }
}

推荐阅读