自动向动态产品添加 facebook like 按钮
我们将推出每日优惠网站,并希望为我们推出的每项新优惠添加一个类似 facebook 的按钮。每笔新交易都将位于不同的子域上。
我们如何才能自动将点赞按钮添加到每个新页面。
谢谢阿里
We will be launching a daily deal site and want to add a facebook like button to each new deal that we launch. Each new deal will be on a different subdomain.
How can we add the like button to each new page automatically.
Thanks
Ali
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果每个页面都有唯一的 URL,您可以简单地使用通用 XFBML 代码作为类似按钮,而无需
href
属性,因为它默认为当前页面。因此放置在页面 http://deal-1.boiling-water.org/ 和 < a href="http://deal-2.boiling-water.org/" rel="nofollow">http://deal-2.boiling-water.org/ 将产生两个不同的 Like 按钮具有单独的计数(考虑到由类似按钮创建的图形边缘标识通过 URL,因此 http://deal-3.boiling-water.org 和 http://deal-3.boiling-water.org/some/subpage 是两个不同的对象也是如此)。
If the each of pages have unique URL you can simply use generic XFBML code for like button without
href
attribute, since it defaults to current page.hence placed on pages http://deal-1.boiling-water.org/ and http://deal-2.boiling-water.org/ will result in two different like buttons with separate counts (Take into account that graph edges created by like button identified by URL, so http://deal-3.boiling-water.org and http://deal-3.boiling-water.org/some/subpage are two different objects as well).
好吧,我认为您需要更新每个子域上的类似按钮代码。这是您可以使用的代码
Well, I think you need to update like button code on each sub domain.Here is the code you may use