請問一下,一個node可以同時包含兩種不同的content type嗎? 例如說,我有一篇文章內容是在描述台北101,那麼這個node是否可以同時 屬於旅遊景點以及百貨公司這兩個content type呢? 綜合問題7.x 發表回應前,請先登入或註冊 Re: 請問一個node可以同時包含兩種content type嗎? 建個分類~不就解決了嗎 發表回應前,請先登入或註冊 Re: 請問一個node可以同時包含兩種content type嗎? 請問一下content type不就是分類嗎? 發表回應前,請先登入或註冊 Re: 請問一個node可以同時包含兩種content type嗎? "內容類型"與"分類"不同喔 發表回應前,請先登入或註冊 Re: 請問一個node可以同時包含兩種content type嗎? 了解~感謝回答 發表回應前,請先登入或註冊 Re: 請問一個node可以同時包含兩種content type嗎? 看看這篇:http://www.notabluescreen.com/drupal-taxonomy 你需要一個可 多選的 Vocabulary 或 Tags 發表回應前,請先登入或註冊 Re: 請問一個node可以同時包含兩種content type嗎? 謝謝 發表回應前,請先登入或註冊 Re: 請問一個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); ?> 發表回應前,請先登入或註冊 Re: 請問一個node可以同時包含兩種content type嗎? http://drupaltaiwan.org/forum/20110112/4827#comment-17336 發表回應前,請先登入或註冊
Re: 請問一個node可以同時包含兩種content type嗎? 看看這篇:http://www.notabluescreen.com/drupal-taxonomy 你需要一個可 多選的 Vocabulary 或 Tags 發表回應前,請先登入或註冊
Re: 請問一個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); ?> 發表回應前,請先登入或註冊
Re: 請問一個node可以同時包含兩種content type嗎? http://drupaltaiwan.org/forum/20110112/4827#comment-17336 發表回應前,請先登入或註冊
Re: 請問一個node可以同時包含兩種content type嗎?
建個分類~不就解決了嗎
Re: 請問一個node可以同時包含兩種content type嗎?
請問一下content type不就是分類嗎?
Re: 請問一個node可以同時包含兩種content type嗎?
"內容類型"與"分類"不同喔
Re: 請問一個node可以同時包含兩種content type嗎?
了解~感謝回答
Re: 請問一個node可以同時包含兩種content type嗎?
看看這篇:
http://www.notabluescreen.com/drupal-taxonomy
你需要一個可 多選的 Vocabulary 或 Tags
Re: 請問一個node可以同時包含兩種content type嗎?
謝謝
Re: 請問一個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);
?>
Re: 請問一個node可以同時包含兩種content type嗎?
http://drupaltaiwan.org/forum/20110112/4827#comment-17336