web-dev-qa-db-fra.com

Créer par programme une catégorie et une sous-catégorie

je crée une catégorie portant le nom Marque avec ce code. J'ai un total de 3 catégories et chacune a 3 sous-catégories.

comment sortir 3 catégories et 3 sous-catégories pour chaque catégorie?

code function.php

function insert_category() {
if(!term_exists('brand')) {
    wp_insert_term(
        'Brand',
        'category',
        array(
          'description' => 'sample category.',
          'slug'        => 'brand'
        )
    );
  }
 }
add_action( 'after_setup_theme', 'insert_category' );
1
FRQ6692

Si votre question ressemble à ceci:

Catégorie A
- sous-catégorie 1
- sous-catégorie 2
- sous-catégorie 3

Ensuite, vous créez les éléments suivants dans le functions.php de votre thème:

//create the main category
wp_insert_term(

// the name of the category
'Category A', 

// the taxonomy, which in this case if category (don't change)
'category', 

array(

// what to use in the url for term archive
'slug' => 'category-a',  
));

Puis pour chaque sous-catégorie:

wp_insert_term(

// the name of the sub-category
'Sub-category 1', 

// the taxonomy 'category' (don't change)
'category',

array(
// what to use in the url for term archive
'slug' => 'sub-cat-1', 

// link with main category. In the case, become a child of the "Category A" parent  
'parent'=> term_exists( 'Category A', 'category' )['term_id']

));

J'espère que cela t'aides.

2
Gregory Schultz