「製品サブカテゴリ」という名前の語彙を追加し、クエリを介してデータベースからツリー構造全体を取得したいですか? 誰でも私を助けることができますか?
質問する
135 次
1 に答える
1
You can use the Drupal API taxonomy_get_tree function, you only need the vocabulary id.
$taxonomyTree = taxonomy_get_tree($vid);
If you are using Drupal 7, you can use taxonomy_vocabulary_machine_name_load to get the vocabulary object by its name.
$vocabularyObject = taxonomy_vocabulary_machine_name_load("product sub categories");
于 2015-03-05T08:25:39.540 に答える