0

我正在尝试在我的网站上创建所有用户的页面概述,但是当按照 Timber 文档中的描述使用 get_users 时,我只得到一个具有标准值的对象,例如 display_name、ID 和描述。

page-bloggers.php

    $author_args = array(
        'orderby'      => 'display_name',
        'order'        => 'ASC',
        'meta_query'    => array(
            array(
                'key'       => 'author_guestblogger',
                'value'     => '0',
                'compare'   => '=',
            ),
        ),
     );

    $authors = get_users( $author_args );
    $context['authors'] = get_users( $author_args );

page-bloggers.twig

        {% for blogger in authors %}
            <article class="author">
                <a href="{{site.url}}/author/{{blogger.user_nicename}}">
                    <h1>{{blogger.display_name}}</h1>
                    <p>{{blogger.ID}} - {{blogger.description}}</p>
                    <p>{{blogger.get_field('author_place')}}</p>
                </a>
            </article>
        {% endfor %}

我可以获得 display_name 和 ID,但 get_field('author_place') 不起作用。如何在 get_users 循环中获取 ACF 值?我猜网址也可能比这更好:-)

提前致谢!

4

2 回答 2

1

尝试将 get_field 作为 Timber 函数调用:

{{ fn('get_field', blogger.ID) }}
于 2017-01-23T17:06:59.027 回答
0

在运行代码时,您可能只需要传递 ID,因为它可能不是当前查询。

{% for blogger in authors %}
    <article class="author">
        <a href="{{site.url}}/author/{{blogger.user_nicename}}">
        <h1>{{blogger.display_name}}</h1>
        <p>{{blogger.ID}} - {{blogger.description}}</p>
        <p>{{blogger.get_field('author_place', blogger.ID)}}</p>
    </a>
</article>
{% endfor %}
于 2019-06-21T03:08:34.330 回答