我坐在这里有一个问题需要弄清楚。我很快就会解释一下: 在我正在开发的网站的主页上,我有几个品牌的瓷砖链接到自定义分类(有一些产品按当前品牌,一些信息和滑块图像排列)。滑块图像是个问题。这是一个自定义分类法,它生成每个品牌页面。所以当它在循环中尝试the_field('header-image')时,它会返回所有图像,即使我在wp_query $ args中添加了posts_per_page = 1。然后它会向所有品牌显示第一张图片。
<div class="image-container">
<?php
$args = array(
'post_type' => 'brands',
'posts_per_page' => 1,
'order' => 'ASC'
);
$myPosts = new WP_query($args);
if ($myPosts->have_posts()) : while ($myPosts->have_posts()) : $myPosts->the_post();
?>
<img src="<?php the_field("header-image"); ?>" alt="">
<?php
endwhile; endif;
wp_reset_query();
?>
</div>
有没有人有线索?
提前致谢,
Dimotro