使用元标记防止 Pinterest 固定
prevent pinterest pinning using meta tag
在很多网站上,我发现这个代码可以防止在 Pinterest 上固定内容:
<meta name="pinterest" content="nopin" description="Sorry, you can't save from this website!">
在 https://validator.w3.org/nu/ 上调试我的页面时出现错误:
Error: Attribute description not allowed on element meta at this point.
那么正确的做法是什么?
官方的 meta
标签似乎没有 description
属性。
参考:https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta#Attributes
如果你不在乎,你仍然可以包括它(我很确定没有什么会破坏,除了一些温柔的灵魂),或者如果你在乎的话就把它去掉,然后 Pinterest 将使用他们的默认英语留言 as mentioned here.
在很多网站上,我发现这个代码可以防止在 Pinterest 上固定内容:
<meta name="pinterest" content="nopin" description="Sorry, you can't save from this website!">
在 https://validator.w3.org/nu/ 上调试我的页面时出现错误:
Error: Attribute description not allowed on element meta at this point.
那么正确的做法是什么?
官方的 meta
标签似乎没有 description
属性。
参考:https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta#Attributes
如果你不在乎,你仍然可以包括它(我很确定没有什么会破坏,除了一些温柔的灵魂),或者如果你在乎的话就把它去掉,然后 Pinterest 将使用他们的默认英语留言 as mentioned here.