私のサイトに Facebook のようなボタン機能を実装しました。すべてが正常に機能しています。API にロケール パラメータを使用する場合。次に、合計カウント値を非表示にします。以下に例を示します。
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Freference%2Fplugins%2Flike&width=450&height=80&colorscheme=light&layout=standard&action=like&show_faces=true&send=true&appId=218119584872965" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
上記のコード ブロックは、いいね! ボタンとカウントを表示しますが、デフォルトの言語は英語 (いいね) です。
以下のコードは上記と同じで、ここではロケール変数を使用しました。
<iframe src="//www.facebook.com/plugins/like.php?locale=de_DE&href=http%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Freference%2Fplugins%2Flike&width=450&height=80&colorscheme=light&layout=standard&action=like&show_faces=true&send=true&appId=218119584872965" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
上記のコードは「Gefällt mir」を表示しますが、カウントのように非表示にします。
何か足りないものはありますか?