使用 Drupal 7 在 custom--node.tpl.php 中显示 CCK 字段(无格式)

发布于 2024-10-26 14:07:54 字数 410 浏览 1 评论 0原文

我想做的就是在 custom--node.tpl.php 上显示 CCK 字段,但似乎 D7 中的所有内容都已更改,并且没有相关文档。

在 Drupal 6 中我是这样做的:

<?php print $node->field_myfield[0]['view'] ?>

在 Drupa 7 中我是这样做的:

<?php print render($content['field_myfield']); ?>

问题是这个字段是 html 格式的,我真的不想要这样。如何使用我自己的 CSS 或模板文件提供的格式在 custom--node.tpl.php 上打印/回显/显示 CCK 字段?

All I'm trying to do is display a CCK field on custom--node.tpl.php but it seems everything has changed in D7 and there are no documentation on this.

In Drupal 6 I did it like so:

<?php print $node->field_myfield[0]['view'] ?>

In Drupa 7 I did it like so:

<?php print render($content['field_myfield']); ?>

The problem is that this field is html formatted and I really don't want that. How can I print/echo/display a CCK field on custom--node.tpl.php with my own formatting provided by my own CSS or template file?

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

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

发布评论

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

评论(2

纵情客 2024-11-02 14:07:54

如果您不想实际呈现内容,您应该能够像这样访问字段的原始值,具体取决于字段的类型:

<?php print $node->field_myfield[$node->language][0]['value']; ?>

If you don't want to actually render the content, you should be able to access the raw value of the field like this, depending on the type of field:

<?php print $node->field_myfield[$node->language][0]['value']; ?>
深巷少女 2024-11-02 14:07:54

获取 Drupal 7 中 cck 字段的格式化值:

<?php
$node = node_load($nid);
echo field_view_value('node', $node, 'field_YOUR_FIELD', node->field_YOUR_FIELD['und'][0]);
?>

参考:http://plusfront.com/Drupal_6_Drupal_7_tip_Get_display_value_formatted_value_of_cck_fields

Get the formatted value of a cck field in Drupal 7:

<?php
$node = node_load($nid);
echo field_view_value('node', $node, 'field_YOUR_FIELD', node->field_YOUR_FIELD['und'][0]);
?>

Reference: http://plusfront.com/Drupal_6_Drupal_7_tip_Get_display_value_formatted_value_of_cck_fields

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