当我们分享我们网站的链接时,如何更改我们在Facebook上看到的图片

时间:2017-04-28 09:03:41

标签: facebook share opengraph

我一直在互联网和编码上寻找一段时间,但当我使用Facebook分享按钮分享文章时,我仍无法个性化图片。

我想把共享文章的图片放在一边,而是插件显示文章作者的图片。

有人可以帮帮我吗?

非常感谢你:)

1 个答案:

答案 0 :(得分:0)

你应该使用一些名为OpenGraph的元标记,它们应该出现在html代码的<head>

示例:

<meta property="og:type" content="website" />
<meta property="og:title" content="place here the title you want to set on the FB share" />
<meta property="og:description" content="place here the description of the share" />
<meta property="og:url" content="place here the url of the page, in php you can use [Note 1]" />
<meta property="og:image" content="place here the url of the image you want to see on the FB share" />

第一个应该有website字符串,不要碰它。其他人应该由你修改。

[注1]
在PHP中你可以得到它:

(isset($_SERVER['HTTPS']) ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";