如何访问 template_preprocess_node 中的节点字段(Drupal 7)
我想访问 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.