Get product permalink by product name in Woocommerce

user3868840 picture user3868840 · Jul 25, 2014 · Viewed 41k times · Source

I am trying to get Woocommerce product permalink by given product name. I know I can get permalink by given product ID like this:

$url = get_permalink( $product_id );

But I can not find any code to get it by product name. I tried this:

$url = get_permalink( 'title' );

That does not work. Please help.

Answer

sabarnix picture sabarnix · Jul 25, 2014

This code works for me

$product = get_page_by_title( 'Product Title', OBJECT, 'product' )
echo get_permalink( $product->ID );