我使用FB方法使用Feed方法进行共享。
页面正确分享。
任何人都可以通过“Facebook应用程序名称”链接告诉如何隐藏共享。
我正在使用以下代码。
FB.ui(
{
method: 'feed',
name: '<?php the_title(); ?>',
link: '<?php echo $urlofpage; ?>',
picture: '',
caption: '<?php echo bloginfo('siteurl'); ?>',
description: '',
message: ''
},
function(response) {
if (response && !response.error_code) {
if ( response && response.post_id ){
$.ajax({'url' :'http://graph.facebook.com/?id=<?php echo $urlofpage; ?>','success':function(data){
get_like_count(data.shares);
}});
}
}
}
);
答案 0 :(得分:0)
您无法隐藏该文字,无论如何它都非常重要。人们应该知道某些东西是通过应用程序而不是用户直接发布的。