2011-06-30 54 views

回答

1

編輯:Doh,我的歉意,我剛剛看到Drupal 7標籤,具體。看來這個線程有一些可能的解決方案:http://drupal.org/node/909968

隨着D6(不是100%約D7)在節點的模板.php文件(同樣,在視圖或大部分的任何地方你有自定義的PHP訪問節點的屬性,如查看或塊),可以使用以下命令:

// returns array of taxonomy objects for given node 
$tax_terms = taxonomy_node_get_terms($node); 

// prints each term name 
foreach ($tax_terms as $tax) { 
    print $tax->name; 
} 

此外,還有一些有用的Drupal功能的情況是這樣的:

// print_r's all properties of a given node, similar to devel 
dpr($node); 

// using this in the above 'for' look will give you all properties of each taxonomy object 
dpr($tax); 

Here's a website列出幾個這些功能。

+0

tnx tim鏈接:) – user198003