我有一個小問題!我想混合兩個查詢的結果!我希望他們按日期順序混合!Wordpress混合兩個查詢的結果
隨着實際的查詢,他們一個接一個地顯示。
有沒有人得到解決方案?
<?php
$loop = new WP_Query(array (
'post_type' => array('videos','photos'),
'category_name' => 'une',
));
while($loop->have_posts()) : $loop->the_post(); ?>
<?php the_title(); ?>
<?php endwhile; ?>
<?php
$loop = new WP_Query(array (
'post_type' => array('spectacles'),
'category_name' => 'une-en',
));
while($loop->have_posts()) : $loop->the_post(); ?>
<?php the_title(); ?>
<?php endwhile; ?>
你可能嘗試[wordpress.stackexchange.com](https://wordpress.stackexchange.com/questions/135820/merge-2-args-in-one-wp-query-and-order-it-by-date)。 – showdev
謝謝@showdev我找到了解決方案! –