我使用ACF纯粹是为了让用户可以将图像上传到预定义的位置,并相应地分配页面规则。WP后端的一切似乎都很好,三幅图像上传到了各个字段。然而,在字体端,除了空白框之外,没有任何内容显示在图像应该显示的位置。查看WP输出的源,只有空白代码:
<img src="" class="middle" alt="image1"/>
这是我正在使用的循环:
<?php query_posts("posts_per_page=1&post_type=page&page_id=168"); if (have_posts()) :
while ( have_posts() ) :
the_post(); ?>
<!--If you want to refer to the child of parent page, use "post_parent=" -->
<li>
<h3><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
<img src="<?php the_field(\'image_1\'); ?>" class="middle" alt="image1"/>
<a href="<?php the_permalink(); ?>" class="button">View More</a>
</li>
<?php endwhile; ?>
<!-- post navigation -->
<?php else: ?>
<!-- no posts found -->
<?php endif; ?>
<?php wp_reset_query(); ?>