使用ACF内置模块无法获取帖子类别-Timber / Twig / Wordpress

时间:2019-02-08 15:04:56

标签: php wordpress twig advanced-custom-fields timber

我在使用与帖子关联的一个或多个类别的传统方法时遇到了麻烦。我已经在ACF Builder中建立了一个与所有帖子相关的关系模块,它们使用twig dump命令显示,但是所有尝试获取关联类别的尝试均不返回任何内容。

与模块关联的php标记为:

$context = Timber::get_context();
$post = new Timber\Post();

$context['categories'] = $post->terms( array(
    'query' => [
        'taxonomy' => 'category',
    ],
) );

Timber::render( array( 'templates/landing-page.twig', 'page.twig' ), $context );

这将返回一个空字符串。 post.categories不返回任何内容,甚至wordpress函数也不返回任何内容。我实质上是在尝试获取帖子名称,图像以及相关的类别名称。

0 个答案:

没有答案