如何在drupal中获取内容类型的字段值
如何获取自定义内容类型的字段值。我使用 CCK 模块创建了自定义内容类型。是否有任何函数可以获取特定内容类型的字段数组。
例如:我可以使用 content_profile_load() 函数获取个人资料详细信息。有没有类似这个的功能。
How can I get the field value of a custom content type. I have created a custom content type using the CCK module. Is there any function to get the array of the fields of a particular content type.
For example: I can get the profile details using content_profile_load() function. Is there any function similar to this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在查看节点,则值全部存储在
$node
变量中。执行print_r($node);
查看节点对象中的所有可用值。
否则使用 node_load() 加载节点对象。有关node_load()的更多信息: http:// /api.drupal.org/api/drupal/modules--node--node.module/function/node_load/7
If you are viewing the node, the values are all stored in the
$node
variable. Do aprint_r($node);
to see all the available values in the node object.
Otherwise use node_load() to load a node object. More on node_load(): http://api.drupal.org/api/drupal/modules--node--node.module/function/node_load/7