wordpress調用指定類型post_type的文章

  • 2019 年 11 月 13 日
  • 筆記

  wordpress很強大,可以添加多種post_type文章類型,假如我們要調用product產品模型的文章要如何操作呢?隨ytkah一起來看看吧。我們用'post_type' => 'product'進行指定,代碼如下

<?php                  $args = array(                      'post_type' => 'product',//自定義文章類型名稱                      'showposts' => 5,//輸出的文章數量,這個可以是缺省值,不用設置                      'orderby' => 'rand',//按隨機調用,如果不要隨機可以把這行刪除                  );                  $my_query = new WP_Query($args);                  if( $my_query->have_posts() ) {                      while ($my_query->have_posts()) : $my_query->the_post();?>                          <div class="item col-xs-12 col-sm-4 col-md-3">                              <div class="box">                                  <img src="<?php the_field('pimg01'); ?>" alt="<?php the_title(); ?>">                                  <div class="text">                                      <b><?php the_title(); ?></b>                                      <?php if (get_field('model')): ?>                                          <p><?php the_field('model'); ?></p>                                      <?php endif; ?>                                      <?php if (get_field('be_applicable')): ?>                                          <p><?php the_field('be_applicable'); ?></p>                                      <?php endif; ?>                                      <a href="<?php the_permalink(); ?>" class="common-btn">more</a>                                  </div>                              </div>                          </div>                      <?php endwhile; wp_reset_query(); //重置query查詢                  } ?>

  可以使用的排序方法有

'orderby' => 'date',                //按發佈日期排序  'orderby' => 'modified',            //按修改時間排序  'orderby' => 'ID',              //按文章ID排序  'orderby' => 'comment_count',           //按評論最多排序  'orderby' => 'title',               //按標題排序  'orderby' => 'rand',                //隨機排序  'order' => 'desc',           // 降序(遞減,由大到小)

  有相同需求的朋友可以試一下