编程语言
首页 > 编程语言> > php-木材:从另一页访问高级自定义字段

php-木材:从另一页访问高级自定义字段

作者:互联网

我试图使用Timber(Twig)从另一个页面访问ACF数据以在另一个页面上显示.

ACF名称在“关于”页面(id = 7)中为the_unstrung_hero.

page-home.php:

<?php
$context = Timber::get_context();
$post = new TimberPost();
$about_page_id = 7;
$about = new TimberPost($about_page_id);
$about->acf = get_field_objects($about->ID);
$context['post'] = $post;
Timber::render( array( 'page-' . $post->post_name . '.twig', 'page.twig' ), $context );

在page-home.twig中:

<p>{{ acf.the_unstrung_hero|print_r }}</p>

这只是许多组合的最后尝试.坦白说,我只是没有得到任何东西(PHP不是我的强项)…您的帮助将不胜感激.

解决方法:

在上面的示例中,我看到您是从“关于”页面获取字段数据的,但是您没有将其添加到上下文中.您的模板不会显示该数据,因为您没有将其移交给模板.

您首先设置上下文:

$context = Timber::get_context();

然后,您将获得应显示的当前帖子数据:

$post = new TimberPost();

现在您确实加载了$post,但是它不在您的上下文中.您必须将要显示在页面上的数据放入$context数组中.然后通过Timber :: render(‘template.twig’,$context)渲染它.您的Twig模板将只包含$context中存在的数据(为完整起见:您还可以在Twig模板中使用函数来获取数据,但这是另一个主题).

要同时添加从“关于”页面加载的数据,您必须执行以下操作:

$about_page_id = 7;
$about = new TimberPost( $about_page_id );
$context['about'] = $about;

看到行$about-> acf = get_field_objects($about-> ID)不再存在了吗?您不需要它,因为Timber会自动将ACF字段加载到帖子数据中.现在可以通过Twig模板中的{{about.the_unstrung_hero}}访问您的字段.

回到您想要实现的目标:

我会这样解决.

就像您的问题注释中提到的Deepak jha提及一样,我也将使用get_field()函数的第二个参数通过帖子ID从帖子中获取字段数据.

如果您只想显示一个ACF字段的值,则实际上并不需要加载about页面的整个帖子.

page-home.php

$context = Timber::get_context();
$post = new TimberPost();
$context['post'] = $post;

// Add ACF field data to context
$about_page_id = 7;
$context['the_unstrung_hero'] = get_field( 'the_unstrung_hero', $about_page_id );    

Timber::render( array( 'page-' . $post->post_name . '.twig', 'page.twig' ), $context );

然后在page-home.twig中,您可以访问post中的字段数据.

<p>{{ the_unstrung_hero }}</p>

标签:twig,wordpress-plugin,timber,wordpress,php
来源: https://codeday.me/bug/20191027/1942006.html