Comment obtenir l'ID de la catégorie de produit actuelle dans la page d'archives des produits
2 réponses
- votes
-
- 2015-08-12
Je résous cecipour obtenir l'ID de la catégorie actuelle.
$cate = get_queried_object(); $cateID = $cate->term_id; echo $cateID;
et celafonctionne comme un charme.
I solve This To get the current category ID.
$cate = get_queried_object(); $cateID = $cate->term_id; echo $cateID;
and it works like a charm.
-
il donne cetteerreur: Remarque:propriéténon définie: WP_Post_Type :: $term_id dansfile.phpit gives this error: Notice: Undefined property: WP_Post_Type::$term_id in file.php
- 0
- 2018-04-25
- sheetal
-
- 2018-05-23
Funcionaperfeitamente!
<?php global $post; $terms = get_the_terms( $post->ID, 'product_cat' ); foreach ( $terms as $term ) { $product_cat_id = $term->term_id; if( $term = get_term_by( 'id', $product_cat_id, 'product_cat' ) ){echo $term->name;} break; }?>
Funciona perfeitamente!
<?php global $post; $terms = get_the_terms( $post->ID, 'product_cat' ); foreach ( $terms as $term ) { $product_cat_id = $term->term_id; if( $term = get_term_by( 'id', $product_cat_id, 'product_cat' ) ){echo $term->name;} break; }?>
Sije suis sur unepage d'archive deproduit,commentpuis-je obtenir l'ID de catégorie deproduit actuel dans lapage d'archive deproduit.J'utilise cecimais aucun résultat: