$category_id, ‘posts_per_page’ => 1, ); $posts = new WP_Query($args); // 创建一个空数组来存储所有标签 $all_tags = array(); // 循环遍历每篇文章 if ($posts>have_posts()) { while ($posts>have_posts()) { $posts>the_post(); // 获取当前文章的标签 $post_tags = get_the_tags(); // 将当前文章的标签添加到$all_tags数组中 if ($post_tags) { foreach ($post_tags as $tag) { $all_tags[] = $tag; } } } } // 使用array_unique函数去重 $unique_tags = array_unique($all_tags); // 循环遍历所有标签并显示它们 if (!empty($unique_tags)) { echo ‘‘; } // 重置查询 wp_reset_query(); ?>