Facebook Like 插件 HTML 实体
我在我的 WordPress 博客上安装了新的 Like 插件。我还安装了适用于 WordPress 的 Open Graph 插件。
除了当我点击“赞”时 HTML 特殊字符显示在我的 Facebook Wall 上之外,一切都很神奇。
我尝试通过编辑插件的 php 来阻止 Open Graph 插件首先对大型标签的内容进行编码。
我将:更改
return "<meta property=\"{$property}\" content=\"".htmlentities($content)."\" />";
为:
return "<meta property=\"{$property}\" content=\"".$content."\" />";
然后尝试:
return "<meta property=\"{$property}\" content=\"".htmlspecialchars_decode($content)."\" />";
但没有运气
有什么建议吗?
I installed the new Like plugin on my Wordpress blog. I also have the Open Graph Plugin for Wordpress installed.
It all works magically except that the HTML special characters are showing on my Facebook Wall when I click like.
I tried preventing the Open Graph plugin from encoding the content of the mega tag in the first place by editing the php for the plugin.
I changed:
return "<meta property=\"{$property}\" content=\"".htmlentities($content)."\" />";
to:
return "<meta property=\"{$property}\" content=\"".$content."\" />";
and then tried:
return "<meta property=\"{$property}\" content=\"".htmlspecialchars_decode($content)."\" />";
But no luck
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不建议删除内容变量的 HTML 编码,请使用 esc_html()。
问题要么出在 Facebook 自己的 Like 插件中,要么出在 WordPress 插件中(即从源获取数据,修改它,然后保存它)。
您使用哪个确切 WordPress 插件来点赞?
I wouldn't advise removing the HTML encoding of the content variable, use esc_html().
The problem is either in Facebook's own Like plugin, or the WordPress one (i.e. taking data from the source, modifying it, and saving it).
Which exact WordPress plugin are you using for Like?