您在這裡

請問一個node可以同時包含兩種content type嗎?

yihchun's 的頭像
yihchun 在 2013-01-23 (三) 15:47 發表

請問一下,一個node可以同時包含兩種不同的content type嗎?

例如說,我有一篇文章內容是在描述台北101,那麼這個node是否可以同時

屬於旅遊景點以及百貨公司這兩個content type呢?

如果你這兩種content type 其中一個是另一個的field 去reference的

那麼應該可以用 field_attach_view 以及 如下的做法 getview->給參數輸出view

http://drupal.org/node/48816

<?php
//load the view by name
$view = views_get_view('faq_topics');
//output the top three items in the view with the node title as an argument
print views_build_view('embed', $view, array($title), false, 3);
?>