【发布时间】:2015-03-26 03:51:29
【问题描述】:
如果他点击“分享”,我想在 wordpress 上分享某人个人时间线上的特殊文字。
f.e 我有:“天哪,我怀孕了” 确切地说,我想从编码网站在我或他的 Facebook 时间线上发布此文本。它应该看到我或他在 facebook 上键入此内容(没有指向网站的链接,或任何内容,空白文本)。与复制粘贴类似,但分享会更容易。
我找到了这个,但这是静态的,我使用 wordpress 并为带有帖子的用户生成多个随机文本。
<script type="text/javascript">
$(document).ready(function(){
$('#share_button').click(function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'This is the content of the "name" field.',
link: 'URL which you would like to share ',
picture: ‘URL of the image which is going to appear as thumbnail image in share dialogbox’,
caption: 'Caption like which appear as title of the dialog box',
description: 'Small description of the post',
message: ''
}
);
}
);
}
);
</script>
插件也很棒 谢谢
【问题讨论】: