本文介绍了Facebook分享不显示我的描述或缩略图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遵循了我发现的每一条建议,试图让这个工作起作用,但所有这些建议都无济于事。有人能告诉我为什么我的描述/缩略图没有显示出来吗?谢谢。以下是我的代码和网站的链接:

Meta标签:

 < meta name =titlecontent =La VitaèBella,因为生活很美丽/> 

< link rel =image_srchref =http://www.lavitaebella.co.uk/images/imageforfacebook.jpg/>

实际连结:

 < a href =http://www.facebook.com/share.php?u=http://www.lavitaebella.co.uktarget =_ blank>< img src ='.. / images / share / s-fb.png'/>< / a> 



预先感谢您提供任何帮助。



< head> < / head> 部分,添加

 < meta property =og:urlcontent =https://www.mathnuggets.com//> 
< meta property =og:imagecontent =https://www.mathnuggets.com/images/fb-logo.jpg/>

然后转到并在其中输入您的URL以刷新FB的页面缓存。

^^^刷新缓存很重要。

I have followed every single piece of advice I have found to try to get this to work but all of it has been to no avail. Can someone tell me why my description/thumbnail doesn't show up? Thanks. Below is my code and the link to the site:

Meta Tags:

<meta name="title" content="La Vita è Bella, because life is beautiful" />
<meta name="description" content="Drawing on Italy’s most famous export – great-tasting, healthy, colourful food – La Vita é Bella brings families together to experience mealtimes the Italian way." />

<link rel="image_src" href="http://www.lavitaebella.co.uk/images/imageforfacebook.jpg" />

Actual Link:

<a href="http://www.facebook.com/share.php?u=http://www.lavitaebella.co.uk" target="_blank"><img src='../images/share/s-fb.png' /></a>

http://www.lavitaebella.co.uk/

Thanks in advance for any help.

解决方案

To those (like me) for whom the other answer did not work:

In the <head> and </head>section, add

<meta property="og:url" content="https://www.mathnuggets.com/" />
<meta property="og:image" content="https://www.mathnuggets.com/images/fb-logo.jpg" />
<meta property="og:title" content="Math website for your gifted student" />
<meta property="og:description" content="Challenging word problems for gifted elementary students" />` 

Then go to FB Linter and enter your URL there to refresh FB's cache of your page.

^^^ Refreshing the cache is important.

这篇关于Facebook分享不显示我的描述或缩略图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 14:23