Facebook Like 插件 HTML 实体

发布于 2024-09-03 15:48:33 字数 601 浏览 3 评论 0原文

我在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

司马昭之心 2024-09-10 15:48:33

我不建议删除内容变量的 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文