使用自定义Wordpress查询来调用5个最近的帖子

时间:2018-05-06 04:29:56

标签: php wordpress

我正在尝试使用WP_query来提取自定义帖子类型的5篇最新帖子。下面的代码看起来是否正确?我最后需要使用wp_reset_postdata吗?

<?php 
  $args = array(
    'post_type'  => 'webinar_post',
    'post_status' => 'publish',
    'posts_per_page' => 5,
    'orderby' => 'post_date',
    'order' => 'DESC',
  );
  $most_recent = new WP_Query( $args );
?>

<?php if( $most_recent->have_posts() ) ?>

  <?php while( $most_recent->have_posts() ) : $most_recent->the_post() ?>
   <div class="webinar">
    <h2><?php echo get_the_title(); ?> </h2>
    <h3><?php echo get_the_date(); ?></h3>
    <p><?php echo get_the_excerpt(); ?></p>
</div>
  <?php endwhile; ?>

<?php endif ?>

1 个答案:

答案 0 :(得分:0)

除非您在同一页面中再次使用wp_reset_postdata(),否则您不需要使用WP_Querywp_reset_postdata()的使用需要设置后期数据

实施例

<?php
// The 1st Query
$args = [
    'post_type'  => 'webinar_post',
    'post_status' => 'publish',
    'posts_per_page' => 5,
    'orderby' => 'post_date',
    'order' => 'DESC',
];
$most_recent = new WP_Query( $args );
if ( $most_recent->have_posts() ) {
    // The Loop
    while ( $most_recent->have_posts() ) { $most_recent->the_post();
        // your code
    }
    // Restore original Post Data
    wp_reset_postdata();
}

// Updating `$args`
$args['orderby'] = 'post_title'
$args['order'] = 'ASC'

/* The 2nd Query */
$most_recent2 = new WP_Query( $args );
if ( $most_recent2->have_posts() ) {
    // The 2nd Loop
    while ( $most_recent2->have_posts() ) { $most_recent2->the_post();
        // your code
    }
    // Restore original Post Data
    wp_reset_postdata();
}
?>