9

WordPress プラグイン - WooCommerce のカテゴリとサブカテゴリに問題があります。カテゴリとサブカテゴリを作成するスクリプトを作成していますが、問題は、これらすべてが WooCommerce DB 構造でどのように機能するかを完全に理解していないことです。

それが私ができたことです:

"wp_terms" で:

term_id | name              | slug     | term group
20      | Parent category   | parent   | 0
21      | Children category | children | 0

「wp_term_taxonomy」では:

term_taxonomy_id | term_id | taxonomy    | description | parent | count
1                | 20      | product_cat |             | 0      | 0
2                | 21      | product_cat |             | 20     | 0

そして、それは機能していますが、なぜこれが機能しないのですか:

「wp_term_taxonomy」では:

term_taxonomy_id | term_id | taxonomy    | description | parent | count
1                | 20      | product_cat |             | 21     | 0
2                | 21      | product_cat |             | 0      | 0
4

4 に答える 4