📅  最后修改于: 2022-03-11 14:53:58.633000             🧑  作者: Mango
$query1 = new WP_Query( $args );
// The Loop
while ( $query1->have_posts() ) {
$query1->the_post();
echo '' . get_the_title() . ' ';
}