自定义Facebook分享

时间:2014-08-06 13:57:50

标签: php html5 facebook button share

我无法更改共享屏幕中的参数。我想改变标题,描述和图像,按照我的例子。

腓:

<?php
     $title = "My Title";
     $description = "My Description";
     $url = "http://cartolaleague.com.br";
     $image = "http://cartolaleague.com.br/imagens/rodapeEscudo.png";
?>

HTML:

<a class="btn" target="_blank" href="http://www.facebook.com/sharer.php?s=100&amp;p[title]=<?php echo urlencode( "$title" ); ?> &amp;p[summary]=<?php echo urlencode( "$description" )  ?>&amp;p[url]=<?php echo urlencode( "$url" ); ?>&amp;p[images][0]=<?php echo urlencode( "$link" );  ?>">Share on Facebook</a>

1 个答案:

答案 0 :(得分:0)

您可以通过HTML元标记

执行此操作
<meta property="og:title" content="<?php echo $title;?>" />
<meta property="og:description" content="<?php echo $description;?>

这里给出了完整的Open Graph标签列表:https://developers.facebook.com/docs/plugins/checklist/

您可以使用调试工具来修复您想要的内容: https://developers.facebook.com/tools/debug