要在WordPress中一次性输出几个分类的最新文章,您可以使用以下代码示例:

<?php
// 指定要查询的分类ID或名称
$categories = array('category1', 'category2', 'category3');

// 设置每个分类要显示的文章数量
$post_count = 5;

// 循环遍历每个分类,并输出最新文章
foreach ($categories as $category) {
    $args = array(
        'post_type' => 'post',
        'posts_per_page' => $post_count,
        'category_name' => $category,
    );

    $query = new WP_Query($args);

    if ($query>have_posts()) {
        echo '<h2>' . $category . '</h2>';
        echo '<ul>';

        while ($query>have_posts()) {
            $query>the_post();
            echo '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a></li>';
        }

        echo '</ul>';
    }

    wp_reset_postdata();
}
?>

在上面的代码中,您需要替换$categories数组中的分类名称(或ID)为您希望显示的实际分类。还可以调整$post_count变量以指定每个分类要显示的文章数量。

将这段代码添加到您的WordPress主题文件中,通常是在single.phparchive.php文件中,以根据您的需求显示最新文章。请确保在使用代码之前备份您的主题文件,并谨慎修改它们。