2011-12-14 83 views
0

我現在正在研究其中一個drupal 7項目,該項目基本上基於Facebook等社交網絡。如何在node.tpl.php(Drupal 7)中使用DISPLAY SUITE的新自定義字段

在那裏我們包括模塊心跳,在此我們也做了一些定製和從顯示套房模塊中創建一個自定義字段中的一個。我做了這個自定義字段,並且正在以良好心跳模塊,但現在我們需要要求所有其他實體來顯示這個自定義字段像節點評論用戶配置文件等。 我努力做到這一點,但無法取得成功。誰能給我提示如何使用這些自定義顯示套件字段node.tpl.php文件?

在此先感謝。

Regards, Chandresh。

+0

該死。 _更多社交網站。 – Bojangles 2011-12-14 09:35:00

回答

0

在你node.tpl你必須使用下面的代碼,例如字段名:field_header

<!-- For Showing only custom field's Value Use below code --> 
<h2 class="title"><?php print $node->field_header['und']['0']['value'];?></h2> 

<!-- ========================= OR ========================= --> 

<!-- For Showing custom field Use below code , which shows custom field's value and title--> 
<h2 class="title"><?php print render(field_view_field('node', $node, 'field_header')); ?></h2> 

<!-- ========================= OR ========================= --> 

<h2 class="title"><?php print render($content['field_header']); ?></h2> 
相關問題