忘れないように記録しとこ

カバの樹

get_posts でカスタムフィールドの値でソートする

2015年1月13日

検索すればすぐに引っかかりますが、自分への備忘録用に記載

//出力条件を設定
$arr = array (
'numberposts' => -1, // 出力数
'order'=>'date', // ソート対象
'oederby' => 'meta_value', // ソートの
'meta_key' => '[カスタムフィールドのkey]'
);

$posts = get_posts ($arr);

print_r($pots);
  • B!