在 drupal 7 中获取字段的纯文本
我有一个内容类型,包括两个字段:名字(节点标题)和姓氏(文本字段) 在 node.tpl 中,我想按顺序打印名字和姓氏。
我使用以下代码来执行此操作,但它在单独的行中打印名字和姓氏。那是因为姓氏包含在 div 中。有什么方法可以获取姓氏字段的原始文本吗?
<?php print $node->title . render($content['field_last_name']);?>
I have a content type including two fields: First name(node title) and Last name(text field)
In node.tpl I want to print first name and last name sequentially.
I use the following code to do this but it prints first name and last name in seperate lines.That's because last name is wrapped in a div.Is there any way to get raw text of the last name field?
<?php print $node->title . render($content['field_last_name']);?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下:
只需将“field_phone_number”替换为“field_last_name”即可。您也可以对名字执行相同的操作。
Try this out:
Simply replace the 'field_phone_number' with 'field_last_name'. You can do the same for the first name too.