2012-11-06 51 views
1

我的內容類型,計劃擁有一個或多個「文章」。打印所有與內容類型相關的「文章」

下面的PHP代碼,我可以讓他們所有:

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

,我得到以下結果:

enter image description here

我想去掉標題加粗上面的鏈接所以我嘗試過:

<?php 
    $lenght = count($field_articolo_di_riferimento); 

    for($i=0; $i<lenght; $i++){ 
    print render($content['field_articolo_di_riferimento'][$i]); 
} 
?> 

但沒有工作。這可能是我用來計算數組長度的錯誤方法。

這是我的內容類型的結構:

enter image description here

回答

4

相反,你爲什麼不走你的內容類型的Manage display?q=admin/structure/types/manage/CONTENT_TYPE/display

而旁邊的場Articolo di RiferimentoLabel價值選擇<Hidden>。這應該隱藏節點顯示中的標籤。

這非常相似。除了你使用的代碼永遠不會影響標籤

希望這有助於...穆罕默德。