get_posts でカスタムフィールドの値でソートする 2015年1月13日 2020年5月29日 完全版を表示する 検索すればすぐに引っかかりますが、自分への備忘録用に記載 //出力条件を設定 $arr = array ( 'numberposts' => -1, // 出力数 'order'=>'date', // ソート対象 'oederby' => 'meta_value', // ソートの 'meta_key' => '[カスタムフィールドのkey]' ); $posts = get_posts ($arr); print_r($pots); B!