我遇到了wordpress网站和Facebook分享的问题。我的网站没有任何共享按钮,我正在谈论的分享是当任何用户在Facebook粘贴网址时,出现的图像是一些随机图像而不是我想要出现的徽标。
到目前为止我尝试过:
<meta property="og:url" content="http://example.com">
<meta property="og:title" content="example name">
<meta property="og:site_name" content="example name">
<meta property="og:image" content="http://example.com/wp-content/uploads/2014/03/logo_example.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="105">
<meta property="og:image:height" content="72">
<link rel="image_src" type="image/png" href="http://example.com/wp-content/uploads/2014/03/logo_example.png" />
此代码是一个示例,图像链接不起作用。
答案 0 :(得分:0)
我的解决方案:
在这个网站:https://developers.facebook.com/tools/debug/og/object/我可以调试facebook元标记,发现我的图像必须至少为200x200像素。因为它不是,facebook总是得到其他图像来构建共享。因此,我必须更改我的图像并删除宽度和高度元标记。