将ACF地图数据传递到Timber主题中的树枝循环

时间:2018-04-03 14:43:02

标签: php twig wordpress-theming timber

我使用自定义Timber主题继承了一个网站,对于如何将常规PHP中的解决方案转换为Twig语法非常困惑。我需要使用自定义帖子类型(场地)在Google地图上显示多个标记。我有一个工作查询来收集所有已发布的场地:

$venue_query = array(
    'post_type' => 'venue',
    'posts_per_page' => -1,
    'post_status' => 'publish'
);

$context['venue'] = Timber::get_posts( $venue_query );
Timber::render( 'beesknees-participating-venues.twig', $context );

我正在尝试按照此ACF forum thread来遍历所有场地,并在Google地图上为每个场所创建一个标记。因为我无法在树枝模板上执行此操作:

<?php
    $location = get_field('c_gmaps');
    $gtemp = explode ('|', $location);
    $coord = explode (',', $gtemp[1]);
    $lat = (float) $coord[0];
    $lng = (float) $coord[1];
?>

<div class="marker" data-lat="<?php echo $lat; ?>" data-lng="<?php echo $lng; ?>">

我尝试在page.php文件中编写一个函数:

function render_markers(&$location) {
    var_dump($location);
    $gtemp = explode (',',  implode($location));
    $coord = explode (',', implode($gtemp));
    echo    '<div class="marker" data-lat="' . $location[lat] .'" data-lng="'. $location[lng] .'">

    <p class="address">' . $gtemp[0] . '<a href="' . the_permalink() .'" rel="bookmark" title="Permanent Link to '. the_title_attribute() .'">' . the_title() . '</a></p>       
      </div>';
}

然后在我的树枝模板中使用它:

{% for item in venue %}
    {% set location = item.get_field('google_map')  %}
    {{ function('render_markers', 'location') }}
{% endfor %}

这会产生重复错误:

  

警告:参数1到render_markers()应该是一个引用,   给出的价值   310线上的/app/public/wp-content/plugins/timber-library/lib/Twig.php   string(8)“location”警告:implode():参数必须是数组   第122行/app/public/wp-content/themes/my_theme/page.php警告:   非法字符串偏移'lat'   第124行/app/public/wp-content/themes/my_theme/page.php

我想我很接近,但我不确定。我在Twig或Timber文档中找不到足够具体的示例。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

快速修复

这感觉很难,但这可能是一个快速解决的问题

这一行...

{{ function('render_markers', 'location') }}

...只是发送字符串&#34; location&#34;到功能。你想要刚刚创建的Twig变量。尝试将其更改为...

{{ function('render_markers', location) }}

大修复

这是更优雅的解决方案&#34;

<?php

class Venue extends Timber\Post {

    function coordinates() {
        $location = $this->get_field('c_gmaps');
        $gtemp = explode ('|', $location);
        $coord = explode (',', $gtemp[1]);
        return $coord;

    }

    function latitude() {
        $coord = this->coordinates();
        $lat = (float) $coord[0];
        return $lat;
    }

    function longitude() {
        $coord = this->coordinates();
        $lng = (float) $coord[1];
        return $lng;
    }

}


/* at the bottom of the PHP file you posted: */

$context['venue'] = Timber::get_posts( $venue_query, 'Venue' );
Timber::render( 'beesknees-participating-venues.twig', $context );

在你的Twig文件中......

{% for item in venue %}
    <div class="marker" data-lat="{{ item.latitude }}" data-lng="{{ item.longitude }}">
    <p class="address">{{ item.latitude }}<a href="{{ item.link }}" rel="bookmark" title="Permanent Link to {{ item.title | escape }}">{{ item.title }}</a></p>       
  </div>
{% endfor %}