0

「製品サブカテゴリ」という名前の語彙を追加し、クエリを介してデータベースからツリー構造全体を取得したいですか? 誰でも私を助けることができますか?

4

1 に答える 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 に答える