Dato l'ID di un prodotto in woocommerce, come posso ottenere il suo URL?
1 risposta
- voti
-
- 2012-10-23
Iprodottiin WooCommerce sono untipo dipostpersonalizzato,quindi dovrebbefunzionare:
$url = get_permalink( $product_id );
Puoitrattare quel
$product_id
come unpostID (questo è quello che è),quindipuoi usarlo con altrenormalifunzioni WP,come: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>';
-
Comepossomodificareilpermalink,quindi lo aggiunge automaticamente al carrello?How can I change the permalink, so it automatically adds it to the cart?
- 0
- 2017-09-20
- Garconis
-
Ho scoperto che "add_to_cart_url ()"fa quello che ho chiesto sopra.I found `add_to_cart_url()` does what I asked above.
- 1
- 2017-09-20
- Garconis
Supponiamo cheio abbia l'ID di unprodottoin wooCommerce;possogenerareil suo URLin qualchemodo?(esempio/shop/fresh-apple)