14
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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'
));
14
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
14
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?