Comment obtenir le lien de catégorie de produit WooCommerce par ID?
3 réponses
- votes
-
- 2014-10-03
Autremise àjour (septembre 2015):
Je peux utiliser
get_term_link
aprèstout. Leproblème était que la chaîne devait être convertieen entier. Utilisation d'un astuce Stack Overflow pour le convertir leplus rapidementen utilisant la valeur (int) $ dans PHP.Donc,cela ressemblerait à ceci si vousne voulezpas utiliser le slug dans laboucleforeach:
$woo_cat_id_int = (int)$woo_cat_id; //convert
Cette valeur convertieest utilisée à laplace du slug dans
get_term_link
. J'espère que ça aide quelqu'un. :-)
On dirait queje l'ai compris.
J'ai utilisé get_term_link . Etj'obtenais uneerreurparce queje l'utilisais de cettefaçon:
get_term_link( $woo_cat_id, 'product_cat' );
Ce quim'a donné cetteerreur:
L'objet de la classe WP_Errorn'apaspu être convertien chaîne
J'ai donc choisi cette voie à laplace avec le
slug
et cela afonctionné:$prod_cat_args = array( 'taxonomy' => 'product_cat', //woocommerce 'orderby' => 'name', 'empty' => 0 ); $woo_categories = get_categories( $prod_cat_args ); foreach ( $woo_categories as $woo_cat ) { $woo_cat_id = $woo_cat->term_id; //category ID $woo_cat_name = $woo_cat->name; //category name $woo_cat_slug = $woo_cat->slug; //category slug $return .= '<a href="' . get_term_link( $woo_cat_slug, 'product_cat' ) . '">' . $woo_cat_name . '</a>'; }//end of $woo_categories foreach
Another update (Sept. 2015):
I can use
get_term_link
after all. The problem was that the string needed to be converted to an integer. Used a Stack Overflow tip for the fastest way to convert it using the (int)$value in PHP.So it would look like this if you don't want to use the slug in the foreach loop:
$woo_cat_id_int = (int)$woo_cat_id; //convert
That converted value is used instead of the slug in
get_term_link
. Hope it helps someone. :-)
Looks like I figured it out.
I used get_term_link. And I was getting an error because I was using it this way:
get_term_link( $woo_cat_id, 'product_cat' );
Which gave me this error:
Object of class WP_Error could not be converted to string
So I went this route instead with the
slug
and it worked:$prod_cat_args = array( 'taxonomy' => 'product_cat', //woocommerce 'orderby' => 'name', 'empty' => 0 ); $woo_categories = get_categories( $prod_cat_args ); foreach ( $woo_categories as $woo_cat ) { $woo_cat_id = $woo_cat->term_id; //category ID $woo_cat_name = $woo_cat->name; //category name $woo_cat_slug = $woo_cat->slug; //category slug $return .= '<a href="' . get_term_link( $woo_cat_slug, 'product_cat' ) . '">' . $woo_cat_name . '</a>'; }//end of $woo_categories foreach
-
Bien queje ne comprendstoujourspaspourquoiilne prendrapas l'ID,maisilprend la limace.Le Codex dit queget_term_link devraitprendre l'ID ...Although I still don't understand why it won't take the ID but it takes the slug. The Codex says get_term_link should take the ID...
- 1
- 2014-10-03
- RachieVee
-
Celan'a aucun sens - devraitfonctionner avec l'identifianten effet ...mercibeaucoupMakes zero sense - should work with the id indeed... many thanks
- 1
- 2014-11-19
- akmur
-
Term_idest une chaîne sur l'objet.Pour l'utiliser avec lafonctionget term link,vous devez d'abord l'analyser comme unentier `get_term_link (intval ($ woo_cat->term_id),'product_cat')`Term_id is a string on the object. To use it with the get term link function you need to parse it as an integer first `get_term_link( intval($woo_cat->term_id), 'product_cat' )`
- 3
- 2015-01-28
- forsvunnet
-
La solution deforsvunnet aparfaitementfonctionnépourmoiThe solution by forsvunnet woked perfectly for me
- 0
- 2016-08-31
- Shane Jones
-
- 2014-12-16
Merci,j'utilise
foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
Celafonctionneparfaitement.
Thanks, I use
foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
It works perfectly.
-
- 2015-09-18
$prod_cat_args = array( 'taxonomy' => 'product_cat', //woocommerce 'orderby' => 'name', 'empty' => 0 ); $terms = get_categories( $prod_cat_args ); //$term_id=6; foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a class="shopping-now" href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
get_term_link()
fonctionne correctement,lors de l'utilisation de l'objetrenvoyéparget_categories()
.$prod_cat_args = array( 'taxonomy' => 'product_cat', //woocommerce 'orderby' => 'name', 'empty' => 0 ); $terms = get_categories( $prod_cat_args ); //$term_id=6; foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a class="shopping-now" href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
get_term_link()
does work smoothly, when using the object returned byget_categories()
.
Les catégories deproduits de WooCommerce sont unetaxonomiepersonnalisée appelée
product_cat
. Dans unefonction quej'écris,j'utiliseget_categories
avec leparamètretaxonomy
défini surproduct_cat
. Toutfonctionnebien etje peux obtenir letermeid,lenomet même le slug. Ce queje n'arrivepas à comprendre,c'est commentfaire afficher le lien. Apparemment,get_category_link
ne fonctionnepas avec lataxonomiepersonnaliséeetget_term_link
ne fonctionnepasnonplus,j'obtiens uneerreur. Voici ce quej'ai:Des suggestions?