给定woocommerce中产品的ID,如何获得其URL?


23

假设我在wooCommerce中拥有产品的ID;如何以某种方式生成其URL?(例如/ shop / fresh-apples)

Answers:


29

WooCommerce中的产品是自定义帖子类型,因此应该可以使用:

$url = get_permalink( $product_id );

您可以将其$product_id视为postID(就是这样),因此可以将其与其他常规WP函数一起使用,例如:

echo '<a href="'.get_permalink($product_id).'">'.get_the_title($product_id).'</a>';

如何更改永久链接,使其自动将其添加到购物车?
Garconis

1
我发现我add_to_cart_url()做了上面的要求。
Garconis
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.