你是说你已经在主页管理中设置了图像,所以我猜你正在使用静态页面作为主页。。。在这种情况下,您可以使用此代码在站点上的任何其他位置显示这些图像:
<div class="container">
<div class="journal-block">
<div class="row">
<?php if ( have_rows( \'gaimages\', get_option(\'page_on_front\') ) ): ?>
<?php
while ( have_rows( \'gaimages\', get_option(\'page_on_front\') ) ) :
the_row();
$image = get_sub_field(\'images\');
$text = get_sub_field(\'text12\');
$text11 = "Hai Tst";
?>
<div class="col-lg-4 col-md-6">
<div class="journal-info">
<a href="blog-single.html">
<img src="<?php echo $image[\'url\']; ?>" alt="<?php echo $image[\'alt\'] ?>">
</a>
<div class="journal-txt">
<h4><a href="blog-single.html">
<?php echo $text; ?>
</a></h4>
<p class="separator">To an English person, it will seem like simplified English</p>
</div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
</div>