我有一个内容类型,其中包含一个引用另一个节点的字段。我正在尝试在主节点的页面中包含来自引用节点的字段,但我不知道如何添加它。以下是我如何在我的主题中获得价值:
function mytheme_preprocess_node(array &$variables) {
$node = $variables['node'];
if ( $node->get('field_testimonial') ) {
$referenced_nodes = $node->get('field_testimonial')->referencedEntities();
if ( count($referenced_nodes) > 0 ){
$referenced_node = $referenced_nodes[0];
//this is providing the value I want. how can I add that back to my page?
error_log($referenced_node->body->value);
}
}
}
请帮助我将该值添加回我的变量,以便我可以在我的主题中使用它!谢谢您的帮助。