使用ACF转发器字段

时间:2017-06-27 12:53:25

标签: wordpress twitter-bootstrap advanced-custom-fields

我正在尝试使用“高级自定义字段”转发器字段实现三列masonary图像网格。

转发器字段工作正常并输出图像,想要了解如何将其作为冠状网格。

                <div class="grey-bg">   
                    <div class="container">
                          <?php if( have_rows('press_images') ): ?>
                            <div class="row">
                              <?php while ( have_rows('press_images') ) : the_row(); ?>
                                <div class="col-lg-4">
                                  <img src="<?php the_sub_field('image'); ?>" />
                                </div>
                              <?php endwhile; ?>
                            </div><!-- end row -->
                          <?php endif; ?>
                        </div><!-- end container -->                                                   
                    </div><!-- end grey-bg -->

0 个答案:

没有答案