在WordPress中为帖子in编写WP_query,可以通过以下步骤实现:
$args = array(
'post_type' => 'post', // 帖子类型
'post__in' => array(1, 2, 3), // 帖子ID数组
);
$query = new WP_Query($args);
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
// 显示帖子内容
the_title();
the_content();
}
} else {
// 没有找到帖子
echo 'No posts found.';
}
wp_reset_postdata(); // 重置查询
在上述代码中,我们定义了一个$args数组,其中包含了查询的参数。post_type参数指定了要查询的帖子类型,post__in参数指定了要查询的帖子ID数组。
请注意,以上答案仅供参考,具体的实现方式和推荐的产品可能因个人需求和环境而异。
领取专属 10元无门槛券
手把手带您无忧上云