WordPress plugin Facebook Like Button Settings a jeho špatné kódování, které lze opravit jednoduchou úpravou kódu
soubor, který potřebujeme upravit se nachází /wp-content/plugins/facebook-like-button/inc/fun.inc.php
defaultní
<meta property= "og:description" content= "'.@htmlentities(@trim(substr(strip_tags($post_by_id['post_content']), 0, 140)), ENT_QUOTES, 'UTF-8' ).'" /> |
nahradit
<meta property= "og:description" content= "'.@trim(substr(strip_tags($post_by_id['post_content']), 0, 140)).'" /> |