LoginSignup
7
10

More than 5 years have passed since last update.

query_posts, get_postsでカスタムフィールド(meta_key)の値でソートする

Posted at

忘れがちなのでメモ。orderbyでmeta_valueを指定して、ソートの対象をmeta_keyで指定

query_posts(array(
    // ソート対象にカスタムフィールドを指定
    'orderby' => 'meta_value',
    // 対象となるカスタムフィールド(hoge)を指定
    'meta_key' => 'hoge',
    // 並び順(ASC, DESC)
    'order' => 'ASC'
));

// get_postsも同じ
get_posts(array(
    'orderby' => 'meta_value',
    'meta_key' => 'hoge',
    'order' => 'ASC'
));
7
10
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
7
10