我网站上的每个帖子都包含一个照片库。画廊由链接到全尺寸图像的缩略图组成。
我还在我的帖子中放置了一个 PinIt 按钮。问题在于它会捕获缩略图以进行固定。

根据我对此类问题的发现,我最终得到了以下代码,该代码应从固定中排除缩略图,并改为包含全尺寸图像。这些都不是,不过……

<a href="path_to_full_image" rel="lightbox[single_post]" pi:pinit:media="path_to_full_image">
     <img src="path_to_thumbnail" width="200" height="130" nopin="nopin" />
</a>

有什么建议么?

最佳答案

我们可以通过在图像属性中使用 nopin = "nopin" 来避免在 pin Action 中显示图像。

例如,

<img src="http://via.placeholder.com/350x150" nopin = "nopin" />

关于button - 包含/排除 Pinterest "Pin It"按钮的图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13763116/

10-13 00:23