📜  按分类获取帖子 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:02.685000             🧑  作者: Mango

代码示例4
foreach ($myterms as $term) :

$args = array(
    'tax_query' => array(
        array(
            $term->slug
        )
    )
);

//  assigning variables to the loop
global $wp_query;
$wp_query = new WP_Query($args);

// starting loop
while ($wp_query->have_posts()) : $wp_query->the_post();

the_title();
blabla....

endwhile;

endforeach;