0
[ProductTitle]
[ThumbnailImage]
  <a href="http://pinterest.com/pin/create/button/?url=lerivinos.com&media=lerivinos.com" 
     class="pin-it-button" 
     count-layout="horizontal">
  Pin It
  </a>
<script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js"></script>
[OurPrice]
[AddToCart]
4

2 回答 2

2

您的 pintrest url 的 media 参数应该指向您的图像文件,如下所示:

<a href="http://pinterest.com/pin/create/button/?url=lerivinos.com&media=https://www.google.com/images/srpr/logo3w.png" 
     class="pin-it-button" 
     count-layout="horizontal">
  Pin It
  </a>

来自pintrest goodies 页面

于 2012-06-05T20:00:07.443 回答
2

您的示例代码没有 pinterest 在代码段中为您提供的 img 链接。

假设你复制错误并省略了它,我遇到了同样的问题,因为 pinterest 给了你这个:

<img border="0" src="//assets.pinterest.com/images/PinExt.png" title="Pin It" />

我必须将 http: 添加到 src 才能使其工作,即:

<img border="0" src="http://assets.pinterest.com/images/PinExt.png" title="Pin It" />

希望有帮助。

于 2012-04-24T11:18:52.850 回答