3680, // 分类ID
‘posts_per_page’ => 10, // 每页显示的新闻数量
);

// 执行查询
$query = new WP_Query($args);

// 循环输出新闻列表
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
?>