友達のサイトにLike Boxを載せたいのですが、iframeコードを使ってプレビューすると、Like BoxのLike Buttonの部分しか表示されません。html5 コードを使用してブラウザでプレビューすると、空白の画面しか表示されません。ここで以前の質問を調べてみたところ、いくつかのヒント (& を & に変更するなど) が見つかりましたが、まだ機能しません。また、私が見ているヘルプのほとんどは Wordpress に関するもので、私はそれを使用していません。Like Box には MySQL または_が必要ですか? ご協力いただきありがとうございます。
iframe コードのテスト ページ:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>try</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2FJaytamangPhotography&;width=520&;height=558&;show_faces=true&;colorscheme=dark&;stream=true&;border_color=black&;header=false" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:520px; height:558px;" allowTransparency="true"></iframe>
</body>
</html>
HTML5 のテスト ページ:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>try</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-like-box" data-href="http://www.facebook.com/JaytamangPhotography" data-width="520" data-height="460" data-show-faces="true" data-colorscheme="dark" data-stream="true" data-border-color="black" data-header="false"></div>
</body>
</html>