我无法更改共享屏幕中的参数。我想改变标题,描述和图像,按照我的例子。
腓:
<?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&p[title]=<?php echo urlencode( "$title" ); ?> &p[summary]=<?php echo urlencode( "$description" ) ?>&p[url]=<?php echo urlencode( "$url" ); ?>&p[images][0]=<?php echo urlencode( "$link" ); ?>">Share on Facebook</a>
答案 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