I am trying to get a Woocommerce product based on the given product name. I know that I can get the permalink using the product identifier as follows:
$url = get_permalink( $product_id );
But I canβt find the code to get it by product name. I tried this:
$url = get_permalink( 'title' );
This does not work. Please, help.
source share