Come ottenere il collegamento alla categoria di prodotti WooCommerce per ID?
3 risposta
- voti
-
- 2014-10-03
Un altro aggiornamento (settembre 2015):
Posso usare
get_term_link
dopotutto. Ilproblemaera che la stringa dovevaessere convertitain unnumerointero. Ho utilizzato un suggerimentoper l'overflow dello stack perilmodopiù veloceper convertirlo utilizzandoil valore $ (int)in PHP.Quindi sarebbe simile a questo senon vuoi usare lo slugnel cicloforeach:
$woo_cat_id_int = (int)$woo_cat_id; //convert
Il valore convertito viene utilizzato alposto dello slugin
get_term_link
. Spero che aiuti qualcuno. :-)
Mi sembra di aver capito.
Ho utilizzato get_term_link . E ho ricevuto unerroreperché lo stavo usandoin questomodo:
get_term_link( $woo_cat_id, 'product_cat' );
Chemi ha dato questoerrore:
L'oggetto della classe WP_Errornonpuòessere convertitoin stringa
Quindi ho seguito questa strada con lo
slug
e hafunzionato:$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
-
Anche se ancoranon capiscoperchénon ci vuole l'IDma ci vuole lo slug.Il Codex dice cheget_term_link dovrebbeprendere 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
-
Non ha senso - dovrebbefunzionare con l'id davvero ...moltegrazieMakes zero sense - should work with the id indeed... many thanks
- 1
- 2014-11-19
- akmur
-
Term_id è una stringa sull'oggetto.Per usarlo con lafunzioneget term link deviprima analizzarlo come unintero `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 soluzione diforsvunnet hafunzionatoperfettamentepermeThe solution by forsvunnet woked perfectly for me
- 0
- 2016-08-31
- Shane Jones
-
- 2014-12-16
Grazie,utilizzo
foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
Funzionaperfettamente.
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()
funziona senzaproblemi quando si utilizza l'oggettorestituito daget_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()
.
Le categorie diprodotti di WooCommerce sono unatassonomiapersonalizzata chiamata
product_cat
. In unafunzione che sto scrivendo,sto usandoget_categories
conilparametrotaxonomy
impostato suproduct_cat
. Tuttofunzionabene eposso ottenereiltermineid,ilnomee persino lo slug. Quello chenon riesco a capire è come visualizzareil collegamento. Apparentementeget_category_link
nonfunziona con latassonomiapersonalizzatae ancheget_term_link
nonfunziona,ricevo unerrore. Ecco cosa ho:Suggerimenti?