如何在drupal中获取内容类型的字段值

发布于 2024-11-18 01:32:54 字数 132 浏览 3 评论 0原文

如何获取自定义内容类型的字段值。我使用 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 技术交流群。

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

发布评论

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

评论(1

青春有你 2024-11-25 01:32:54

如果您正在查看节点,则值全部存储在 $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 a print_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

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