我遇到了同样的问题。我正在使用 wordpress 网站,所以我不得不放弃www
. 检查您wordpress admin > settings >general
的站点地址/wordpress 地址等。这克服了其他 URL 错误。
至于图像问题,我只能说把它放在我的头文件中对我有用。我在下面添加了这个。
<html prefix="og: http://ogp.me/ns#">
<head>
<meta property="og:image" content="http://yourwebsite.com/images/yourimage.jpg"/>
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="500" />
<meta property="og:title" content="your website page title"/>
<meta property="og:url" content="http://yourwebsite.com"/>
<meta property="og:site_name" content="site name and content etc"/>
<meta property="og:description"content="description of site" />
<meta property="og:type" content="Website"/>
在 wordpress 中,我确实把它留在
<title><?php wp_title( '|', true, 'right' ); ?></title>
了那里。
同样正如我实例中其他帖子中所建议的那样,此代码:
<link rel="image_src" href="http://URL-TO-YOUR-IMAGE" / >
使其无法正常工作。删除它立即修复它。
我使用了 500 x 500 的图像。祝你好运..希望我能拯救别人的痛苦。