Wie erhalte ich einen Link zur WooCommerce-Produktkategorie nach ID?
3 Antworten
- Stimmen
-
- 2014-10-03
Ein weiteres Update (Sept. 2015):
Ich kann
get_term_link
schließlich verwenden. Das Problem war,dass die Zeichenfolgein eine Ganzzahl konvertiert werdenmusste. Verwendeteinen Stapelüberlauf-Tipp für den schnellsten Weg,ihnmit dem (int) $ -Wertin zu konvertieren PHP.Es würde also so aussehen,wenn Sie den Slugin derforeach-Schleifenicht verwendenmöchten:
$woo_cat_id_int = (int)$woo_cat_id; //convert
Dieser konvertierte Wert wird anstelle des Slugsin
get_term_link
verwendet. Hoffees hilftjemandem. :-)
Sieht so aus,als hätteiches herausgefunden.
Ich habe get_term_link verwendet. Undich habeeinen Fehlererhalten,weilichihnfolgendermaßen verwendet habe:
get_term_link( $woo_cat_id, 'product_cat' );
Wasmir diesen Fehlergegeben hat:
Objekt der Klasse WP_Error konntenichtin Zeichenfolge
konvertiert werdenAlsobin ich diesen Weg stattdessenmit dem
slug
gegangen undes hatfunktioniert:$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
-
Ich verstehe zwarimmernochnicht,warumesnicht die IDnimmt,sondern die Schnecke.Der Codex sagt,get_term_link sollte die IDnehmen ...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
-
Macht keinen Sinn - solltein der Tatmit der IDfunktionieren ... vielen DankMakes zero sense - should work with the id indeed... many thanks
- 1
- 2014-11-19
- akmur
-
Term_idisteine Zeichenfolgefür das Objekt.Umesmit der Funktionget term link zu verwenden,müssen Siees zuerst als Ganzzahl analysieren: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
-
Die Lösung vonforsvunnet hat sichfürmichperfektbewährtThe solution by forsvunnet woked perfectly for me
- 0
- 2016-08-31
- Shane Jones
-
- 2014-12-16
Danke,ichbenutze
foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
Esfunktioniertperfekt.
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()
funktioniertbei Verwendung des Objekts reibungslosWird vonget_categories()
zurückgegeben.$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()
.
Die Produktkategorien von WooCommerce sindeine benutzerdefinierte Taxonomiemit dem Namen
product_cat
. Ineiner Funktion,dieich schreibe,verwendeichget_categories
,wobei der Parametertaxonomy
aufproduct_cat
gesetztist. Allesfunktioniertgut undich kann den Begriff ID,den Namen und sogar die Schneckebekommen. Wasichnicht herausfinden kann,ist,wie der Link angezeigt wird. Anscheinendfunktioniertget_category_link
nichtmit benutzerdefinierter Taxonomie undget_term_link
funktioniert auchnicht. Icherhalteeine Fehlermeldung. Folgendes habeich:Vorschläge?