Wie kann ich angesichts der ID eines Produkts im Woocommerce dessen URL abrufen?
1 Antworten
- Stimmen
-
- 2012-10-23
Produktein WooCommerce sindbenutzerdefinierte Posts,daher sollte diesfunktionieren:
$url = get_permalink( $product_id );
Sie können diese
$product_id
alspostIDbehandeln (dasistes),sodass Sie siemit anderennormalen WP-Funktionen verwenden können,z. B.:echo '<a href="'.get_permalink($product_id).'">'.get_the_title($product_id).'</a>';
Products in WooCommerce are a custom post type, so this should work:
$url = get_permalink( $product_id );
You can treat that
$product_id
as a postID (that's what it is), so you can use it with other normal WP functions, like:echo '<a href="'.get_permalink($product_id).'">'.get_the_title($product_id).'</a>';
-
Wie kannich den Permalink ändern,damiter automatischin den Warenkorbgelegt wird?How can I change the permalink, so it automatically adds it to the cart?
- 0
- 2017-09-20
- Garconis
-
Ich habefestgestellt,dass "add_to_cart_url ()" dastut,wasich obengefragt habe.I found `add_to_cart_url()` does what I asked above.
- 1
- 2017-09-20
- Garconis
Angenommen,ich habe die IDeines Produktsin wooCommerce.kannich die URLirgendwiegenerieren?(Beispiel/Laden/frische Äpfel)