给定woocommerce中产品的ID,如何获取其URL?
1 个回答
- 投票数
-
- 2012-10-23
WooCommerce中的产品是自定义帖子类型,因此应该可以使用:
$url = get_permalink( $product_id );
您可以将
$product_id
视为postID(就是这样),因此可以将其与其他常规WP函数一起使用,例如: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>';
说我在wooCommerce中拥有产品的ID;如何以某种方式生成其URL?(例如/shop/fresh-apples)