插入 facebook like 按钮
假设我有一个使用自定义 cms 的博客网站 http://www.example.com
,并且我希望网站中的每个内容都显示一个“点赞”按钮。我已经能够添加一个在每个页面中插入代码片段的 mod,其中包含类似的代码,但是我如何区分每个不同帖子的点赞,因为我记得,类似 facebook 的代码需要 src= “http://www.example.com”
,如何使每个页面的 src
值唯一,例如src="http://www.example.com/news/a_news.php"
。我该如何实现这个目标...?
Say I have a blogging site http://www.example.com
using custom cms, and I want each content in the site to display a like button. I have been able to add a mod that inserts code snippets in each page, incliding the like code, but how do I go about differentiating the likes from each different post because as I recall, the facebook like code requires a src="http://www.example.com"
, how do I make the src
value unique for each page like src="http://www.example.com/news/a_news.php"
. How do I achieve this...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参考下面的 URL 为您的页面生成“点赞”按钮。
http://developers.facebook.com/docs/reference/plugins/like/
完成设置后,获取代码(SDK 脚本 + 按钮代码),如下所示。
类似 URL http://www.site.com/news/a_news.php
现在您必须为每个链接动态设置类似按钮代码。
说 b_news.php 按钮将是
c_news.php 按钮,
您只需更改类似按钮中的 data-href= 即可完成所有设置。
refer below URL to generate like button for your page.
http://developers.facebook.com/docs/reference/plugins/like/
Once you are done with settings get Code (SDK script + button code) which looks like below.
like button code for URL http://www.site.com/news/a_news.php
now you have to dynamically set up like button code for each link.
say for b_news.php button will be
for c_news.php button will be
you just have to change data-href= in like button and all set.