标签: php wordpress woocommerce woocommerce-theming
是否可以通过了解ID获得slug WooCommerce产品?我需要在产品页面之外获取产品的价格。
ID
slug
答案 0 :(得分:3)
使用现有函数get_page_by_path();
$product_obj = get_page_by_path( $slug, OBJECT, 'product' );
更好的解释:
https://wordpress.stackexchange.com/questions/206886/get-product-details-by-url-key-in-wordpress-woocommerce