使用 Drupal 7 在 custom--node.tpl.php 中显示 CCK 字段(无格式)
我想做的就是在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不想实际呈现内容,您应该能够像这样访问字段的原始值,具体取决于字段的类型:
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:
获取 Drupal 7 中 cck 字段的格式化值:
参考: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:
Reference: http://plusfront.com/Drupal_6_Drupal_7_tip_Get_display_value_formatted_value_of_cck_fields