如何使用 html 在 whatsapp 上分享产品名称和图片?

How can share product name and image on whatapps using html?

我正在尝试创建可以共享产品 link 和名称的脚本。我搜索了一下,找到了一个不错的 answer.

<a href="whatsapp://send?text=http://www.example.com/index.php?route=product/product&product_id=50" data-action="share/whatsapp/share">Share via Whatsapp</a>

以上link只是发送产品URL到whatapps,但我也想发送标题。有没有可能我也可以发送产品标题。

我尝试对其进行更多搜索,最后找到了解决方案。我只是添加 php 语法 urlencode()

<a href="whatsapp://send?text=<?php echo urlencode ('http://www.example.com/index.php?route=product/product&product_id=110'); ?>" data-action="share/whatsapp/share">Share via Whatsapp</a>