woocommerce Product shortcode create [closed]

Hello Here is the Shortcode you can use this it will give you title link and image of product.
Put this code in functions.php file of your theme.

add_shortcode('product_data','custom_product_function');
function custom_product_function($atts)
{
    $post_id = $atts['id'];
    $title = get_the_title($post_id);
    $link = get_the_permalink($post_id);
    $image = get_the_post_thumbnail($post_id);
    $data="<div><a href="".$link.'"><p>'.$title.'</p></a>'.
    $image.'</div>';
    return $data;
}

And then add the shortcode in your page or post with product id

[product_data id=1958]