准备好文档后,我正在通过jQuery更改meta og:description。但这并没有反映在Facebook分享中。
我所做的是...
我无权直接访问头文件,
我通过jQuery添加了属性property
,但该属性最后放置在该标签中。
jQuery("meta[name='og:image']").attr('property','og:image');
它将使我的元标记成为
<meta name="og:image" content="something.jpg" property="og:image">
但是我要像这样
<meta property="og:image" name="og:image" content="something.jpg">
是meta标签的第一个属性。
我认为属性位置可能会受到影响,以便将元描述检索到Facebook分享中。
有人可以帮助我吗?