LoginSignup
13
14

More than 5 years have passed since last update.

WordPressのカスタムフィールドで「数字」として並び替える

Posted at

WordPressで記事を取得する際、カスタムフィールドに入力した値で並び替えたい場合があります。

しかし、

$results = get_posts(array(..., 'orderby' => 'meta_value'));

としてしまうと、カスタムフィールドが「文字列」として評価されてしまい、2よりも10の方が先に来てしまいます。カスタムフィールドを数字として評価するには「meta_value_num」を利用します。

$results = get_posts(array(
  'orderby' => 'meta_value_num',
  'meta_key' => 'price',
  'order' => 'asc'
));
13
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
14