wordpress カスタムフィールドパラメータ(値)で並び変える(sort)方法

 

wordpress カスタムフィールドパラメータ(値)で並び変える(sort)方法

これはカスタムフィールドの入力を数字にし、並び替えをしています。

 

<?php
$cost_args = array(
  'post_type' => 'post',
  'posts_per_page' => -1,
  'order' => 'ASC',
  'orderby' => 'meta_value_num',
  'meta_query' => array(
    array(
      'key' => 'car_sort_product',
    )
  )
);
$cost_box = get_posts($cost_args);
foreach ($cost_box as $post):
  setup_postdata($post);
?>
  <li>
    <div class="right">
      <h5 class="sub"><?php the_field('car_point_txt'); ?></h5>
      <p class="car_text01"><?php the_field('car_describe'); ?></p>
      <?php if (get_field('car_archive_price')): ?>
        <p class="price_day"><?php the_field('car_archive_price'); ?></p>
      <?php endif; ?>
      <p class="more"><a href="<?php the_permalink(); ?>">詳細はこちら</a></p>
    </div>
  </li>
<?php endforeach; wp_reset_postdata(); ?>

 

参考サイト

https://wpdocs.osdn.jp/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/get_posts#.E3.82.AB.E3.82.B9.E3.82.BF.E3.83.A0.E3.83.95.E3.82.A3.E3.83.BC.E3.83.AB.E3.83.89.E3.83.91.E3.83.A9.E3.83.A1.E3.83.BC.E3.82.BF

https://wpdocs.osdn.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/WP_Query#Custom_Field_Parameters

category cloud