我有很多产品,希望在Google plus中使用不同的标题和说明分享每个产品,而不是页面元标记。我怎么能这样做?
答案 0 :(得分:4)
会认出来:
<meta itemprop="name" content="The page Title for sharing">
<meta itemprop="description" content="The description less than 200 characters">
<meta itemprop="image" content="http://www.yoursite.com/image-200x200.jpg">
打开图形标记(其他社交网络也读取它):
<meta property="og:image" content="http://www.yoursite.com/the-page-thumb-200x200.jpg" />
<meta property="og:title" content="The page Title for sharing" />
<meta property="og:type" content="website" /> (or "article")
<meta property="og:url" content="http://www.yoursite.com/the-url-for-sharing" />
<meta property="og:description" content="The Description less than 200 characters" />
<meta property="og:site_name" content="Your Site name" />
<meta property="fb:app_id" content="your-facebook-app-id" />
<meta property="fb:admins" content="your-facebook-user-id" />
@ https://developers.facebook.com/
使用您的FB凭据登录,然后设置Facebook应用程序。
@ https://developers.facebook.com/tools/debug
了解您的数据是如何被看到的。
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="The page Title for sharing">
<meta name="twitter:description" content="The description less than 200 characters">
<meta name="twitter:creator" content="@author_handle">
<meta name="twitter:image" content="http://www.yoursite.com/image-200x200.jpg">
答案 1 :(得分:1)
而不是页面元标记
你做不到。 Google+将仅从该页面获取有关该页面的数据。您不能使用URI参数或任何JS API覆盖它。