如何访问 template_preprocess_node 中的节点字段(Drupal 7)

发布于 2024-11-10 13:18:52 字数 181 浏览 0 评论 0原文

我想访问 template_preprocess_node 中的节点字段。我的网站是多语言的,节点数组中字段的形式类似于

$node->field_my_field['en'][0]['value']。

是否有另一种方法来访问此字段的值?因为通过这种方式我应该指定用户语言。(我只想要字段值而不是带有标签的值)

I want to access a node field in template_preprocess_node.My site is multilingual and the form of the field in node array is something like

$node->field_my_field['en'][0]['value'].

Is there another way to access the value of this field?Because with this way I should specify the user language.(I want just field value not the value with it's label)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

椵侞 2024-11-17 13:18:52

使用 field_get_items 函数。

这是获取字段项的最佳方式,不要用固定语言直接引用它们。

use the field_get_items function.

This is the best way to get field items, don't reference them directly with a fixed language.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文