How to Get WooCommerce Product ID from It's Slug?

前端 未结 1 1523
眼角桃花
眼角桃花 2021-01-06 19:45

Is it possible to get an ID of a WooCommerce product only by knowing it\'s slug? I need to fetch the product\'s price outside the product\'s page.<

相关标签:
1条回答
  • 2021-01-06 20:13

    use the existing function get_page_by_path();

    $product_obj = get_page_by_path( $slug, OBJECT, 'product' );
    

    better explanation :

    https://wordpress.stackexchange.com/questions/206886/get-product-details-by-url-key-in-wordpress-woocommerce

    0 讨论(0)
提交回复
热议问题