是否可以在同一页面上添加两个按钮:
http://www.mysite.com
,其中包含特定于主页的标题,图像和说明http://www.mysite.com/article?id=511
,其中包含第511条特定的标题,说明和图片。答案 0 :(得分:1)
查看open graph protocol文档,因为您需要提供正确的代码,具体取决于您所在的页面。
例如,在主页上:
<meta property="og:title" content="My Site Name" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.mysite.com" />
<meta property="og:image" content="img" />
在文章页面上:
<meta property="og:title" content="My Article Title" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://www.mysite.com/article?id=511" />
<meta property="og:image" content="img2" />
<meta property="og:description" content="My article description" />
<meta property="og:site_name" content="My Site Name" />
然后在您想要的任何页面上为这些不同的URL提供Like按钮。
答案 1 :(得分:0)
是的,只需将每个喜欢按钮的href属性设置为相应的URL。