2014-10-20 67 views
0

如何在一個單獨的div顯示custom_field如何DIV顯示單場爲Drupal 7

我使用Drupal的7.27

參考截屏與機器名稱:field_bottom_content

我嘗試下面的代碼:

print render($content['field_bottom_content']); 

但是,它不工作.....

enter image description here

+0

你試過了什麼? – manuell 2014-10-20 06:40:43

+0

<?php print render($ content ['field_bottom_content']); ?> – Jithesh 2014-10-20 06:58:24

回答

0
print $node->field_bottom_content['und'][0]['value']; 

試試這一個。

+0

說明可能有幫助,因爲您使用的是指針和3索引數組。 – 2014-10-21 15:43:46

+1

$ node是drupal的內置變量。 「field_bottom_content」是自定義字段的名稱。 「und」用於語言「0」是索引,「value」將返回字段的實際值。希望這個解釋有幫助! – 2014-10-22 05:16:37

+0

這不起作用 – Jithesh 2014-10-22 06:01:29