自动向动态产品添加 facebook like 按钮

发布于 2024-12-08 03:56:18 字数 123 浏览 0 评论 0原文

我们将推出每日优惠网站,并希望为我们推出的每项新优惠添加一个类似 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悲喜皆因你 2024-12-15 03:56:18

如果每个页面都有唯一的 URL,您可以简单地使用通用 XFBML 代码作为类似按钮,而无需 href 属性,因为它默认为当前页面。

<fb:like send="false" layout="button_count" width="90" show_faces="false"></fb:like>

因此放置在页面 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.orghttp://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.

<fb:like send="false" layout="button_count" width="90" show_faces="false"></fb:like>

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).

梦在深巷 2024-12-15 03:56:18

好吧,我认为您需要更新每个子域上的类似按钮代码。这是您可以使用的代码

<iframe src="http://www.facebook.com/plugins/like.php?href=<%=YourPageUrl %>&layout=standard&show_faces=false&action=like&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:100%; height:30px; margin-top:5px"></iframe>

Well, I think you need to update like button code on each sub domain.Here is the code you may use

<iframe src="http://www.facebook.com/plugins/like.php?href=<%=YourPageUrl %>&layout=standard&show_faces=false&action=like&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:100%; height:30px; margin-top:5px"></iframe>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文