1

我使用以下代码将 facebook like 框添加到我的网站

(从http://developers.facebook.com/docs/reference/plugins/like-box/生成)

<script src="http://connect.facebook.net/zh_HK/all.js#xfbml=1"></script>
<fb:like-box href="my-fb-page" width="185" show_faces="true" stream="false" header="false"></fb:like-box>

这个赞框会显示超过 20 张个人资料图片,而我只想将其限制在一定数量(比如只有 6 张图片)

如果我使用 iframe 版本的代码,我知道有一个连接属性可以执行此操作,但是对于 iframe 代码,我无法指定 en_US 以外的语言界面。

我想要 zh_HK 语言界面并限制数量。图片到只有 6。

我不购买使用高度隐藏额外图片的解决方案,因为浏览器将继续下载所有图片,即使它们被隐藏。我想要的只是下载并显示我真正需要的图片。

任何想法?谢谢!

4

2 回答 2

3

You actually can specify the language in the iframe version by passing it as long-form ISO-code in the "locale" parameter:

http://www.facebook.com/plugins/likebox.php?locale=de_DE&...

This one is undocumented and probably a remnant of the old fb:fan plugin.

Regarding setting connections: From what I can tell this option has been completely removed from the like-box plugin. Right now I can't even get it work reliably in the iframe version.

于 2011-08-23T08:09:45.727 回答
1

您要使用的属性是: connections="6"

你需要把它放在你的某个地方fb:like-box

<fb:like-box href="my-fb-page" width="185" show_faces="true" connections="6" stream="false" header="false"></fb:like-box>

如果您不使用 xfbml 版本,则需要使用数据属性,因此: data-connections="6"

我发现这个: http: //line25.com/tutorials/how-to-add-a-custom-facebook-like-box-to-your-site

于 2013-02-25T18:26:31.250 回答