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?