カスタム投稿タイプとして学校の時間割があります。各投稿は、クラスが開始する時間と分を 24 時間形式で指定するための 2 つのテキスト フィールドを含む投稿メタ ボックスを含む学校のクラスです。
_start_hour
_start_minute
投稿を時間順に出力しようとしています。
// the args
$args = array(
'post_type' => 'my-cpt',
'meta_key' => '???????',
'orderby' => 'meta_value_num',
'order' => 'ASC',
'posts_per_page' => -1,
);
// The Query
$the_query = new WP_Query( $args );
while ( $the_query->have_posts() ) : $the_query->the_post();
// ordered output according to time
endwhile;
「meta_key」で 2 つのメタ キーを連結する方法はありますか?
私は試し'meta_key' => '_start_hour' && '_start_minute'
ましたが、これはクエリを壊します。