如何通过获取图片在首页也在文件夹页面?

时间:2018-06-08 作者:mirsal saidu

我使用acf中继器,并使用子字段作为图像。通过主页管理员上传图片,但如何在其他页面显示相同的图片?

主页Acf代码

<div class="container">
    <div class="journal-block">
        <div class="row">

            <?php if( have_rows(\'gaimages\') ): ?>

                <?php
                    while( have_rows(\'gaimages\') ) :
                        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>

1 个回复
SO网友:Krzysiek Dróżdż

你是说你已经在主页管理中设置了图像,所以我猜你正在使用静态页面作为主页。。。在这种情况下,您可以使用此代码在站点上的任何其他位置显示这些图像:

<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>

结束

相关推荐

如何通过获取图片在首页也在文件夹页面? - 小码农CODE - 行之有效找到问题解决它

如何通过获取图片在首页也在文件夹页面?

时间:2018-06-08 作者:mirsal saidu

我使用acf中继器,并使用子字段作为图像。通过主页管理员上传图片,但如何在其他页面显示相同的图片?

主页Acf代码

<div class="container">
    <div class="journal-block">
        <div class="row">

            <?php if( have_rows(\'gaimages\') ): ?>

                <?php
                    while( have_rows(\'gaimages\') ) :
                        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>

1 个回复
SO网友:Krzysiek Dróżdż

你是说你已经在主页管理中设置了图像,所以我猜你正在使用静态页面作为主页。。。在这种情况下,您可以使用此代码在站点上的任何其他位置显示这些图像:

<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>

相关推荐