Como obter o link da categoria de produto WooCommerce por ID?
3 respostas
- votos
-
- 2014-10-03
Outra atualização (setembro 2015):
i pode use
get_term_link
afinal. Oproblemaera que a stringprecisava ser convertidaem uminteiro. Usado um stackestouro daponta Para amaneiramais rápida de convertê-lo usando o valor (int) $em Php.Então seria assim se vocênão quiser usar a lesmano loopforeach:
$woo_cat_id_int = (int)$woo_cat_id; //convert
Esse valor convertido é usadoem vez da slugem
get_term_link
. Espero que ajude alguém. : -)
.Parece queeu descobri.
Eu usei get_term_link . Eeuestava recebendo umerroporqueeuestava usando destaforma:
get_term_link( $woo_cat_id, 'product_cat' );
queme deuesteerro:
.
Objeto de Classe WP_Errornãopôde ser convertidoem string
Entãoeufuinesta rota com o
slug
e funcionou:$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
-
Emboraeu aindanãoentendapor quenão vai levar oid,mas épreciso a lesma.O Codex diz Get_term_Link deve levar o 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
-
Faz sentido zero - devetrabalhar com oid defato ... Muito obrigadoMakes zero sense - should work with the id indeed... many thanks
- 1
- 2014-11-19
- akmur
-
Term_id é uma stringno objeto.Para usá-lo com afunção de link deget termo,vocêprecisa analisá-lo como umprimeirointeiroprimeiro `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
-
A soluçãoporforsvunnet wokedperfeitamenteparamimThe solution by forsvunnet woked perfectly for me
- 0
- 2016-08-31
- Shane Jones
-
- 2014-12-16
Obrigado,eu uso
foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
funcionaperfeitamente.
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()
funciona semproblemas,ao usar o objetoretornadoporget_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()
.
WooCommerce são umataxonomiapersonalizada chamada
product_cat
. Em umafunçãoestouescrevendo,estou usandoget_categories
com oparâmetrotaxonomy
paraproduct_cat
. Tudofuncionabem eeuposso obter otermoid,onomee atémesmo a lesma. O quenão consigo descobrir é como obter o linkparaexibir. Aparentementeget_category_link
nãofunciona comtaxonomiapersonalizadaeget_term_link
nãoestáfuncionando,recebo umerro. Aquiestá o queeutenho:sugestões?