3

当我们直接在 Facebook 上共享一个链接,并且该链接转到一个 Wordpress 博客时,我们如何控制 Facebook 将提取并用作共享链接描述的文本?只需转到 facebook 并粘贴或输入任何 Wordpress URL,它将以首页上第一篇文章的故事作为该 URL 的描述。

我试过了:

<meta name="description" content="<?php echo get_bloginfo ( 'description' );  ?>" />

<meta property="og:description" content="<?php echo get_bloginfo ( 'description' );  ?>" />  

但它仍然没有在 Facebook 上得到正确的描述。是的,我已经在 Wordpress 上为我的网站设置了描述。是的,当我查看源代码时,描述会显示在网站上。

谢谢。

4

2 回答 2

7

Facebook has its own Caching that can sometimes cause changes to your Meta Tags to never show up properly, even after adding or changing them.

Running the Facebook Debugger not only will tell you if something is wrong with your Meta Tags, but also will clear its cache of the target website's information so that its current information can be properly scraped.

于 2012-05-09T23:49:55.030 回答
0

我还没有做过任何 facebook 开发,但是查看这个文档,它说

标题和描述标签是任何预览的最低要求,因此请确保包含这两个标签。

所以也许尝试包括在内<meta property="og:title" content="title" />

于 2012-05-09T23:16:14.437 回答