使用drupal 7中的自定义内容类型显示嵌套内容

时间:2016-05-27 12:11:15

标签: php drupal-7 content-type

我使用product_name,product_description,button_name和link创建了内容类型。现在我想按照我的意愿显示这些细节。如何在Drupal7中使用自定义内容类型显示嵌套内容?

1 个答案:

答案 0 :(得分:2)

您需要为自定义内容类型创建模板文件。命名惯例是:

node--contenttype.tpl.php

在上面你可以获取所有字段。例如:

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