循环实际上不包含任何内容。
它确实包括一些方法,以便轻松输出数据,例如the_title()
, 这是在调用时完成的the_post()
然后,在循环中,您可以使用get\\u the\\u ID()和get\\u post\\u meta()来获取自定义字段(包括ACF字段)。
因此,如果您已从该查询中检索到所需的帖子,则可以执行以下操作:
<?php while($loop->have_posts()) : $loop->the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<p>My Custom Field: <?php echo get_post_meta(get_the_ID(),\'my-custom-field\', true); ?>
<?php endwhile; wp_reset_postdata(); ?>
希望这有帮助。