[WordPress]複数のカスタムフィールドでソート Posted 2013年2月17日 by はらぐち & filed under プログラミング. WordPressでの特殊なソート方法。 通常WordPressの記事取得は以下のような形で行えます。 以下の感じだとカスタム投稿タイプhogehogeの記事を取得してきます。 $args = array( 'post_type' => 'hogehoge', ); query_posts( $args ); WordPressの記事の取得はorderbyで指定した内容の並び順にする事ができます。 指定できる内容は以下の通り。 ‘ID’ – post id 順 ‘author’ – 投稿者順 ‘title’ – タイトル順 ‘date’ – 投稿日付順 ‘modified’ – 最終更新日順 ‘parent’ – 親記事のI