如何在twig文件中将我的图库添加到滑块?

时间:2018-04-12 19:00:05

标签: php wordpress

我已经从画廊渲染了我的所有照片,但是需要将它们放到我的twig文件中的滑块..这是可能的而不使用任何插件,请????

我的代码,php:

<?php

$context = Timber::get_context();
$context["post"] = Timber::get_post();


Timber::render( 'pages/single/single-one-collection.twig', $context, CACHE_TIME);

我的树枝:

 {% for picture in post.get_field('oc_gallery') %}
                <div class="section" id="section{{ loop.index }}">
                    <img src="{{ TimberImage(picture).src | resize(400, 266)}}" alt="" />
                </div>
 {% endfor %}

0 个答案:

没有答案