我有这个网站http://smithachallathomas.net63.net/。现在我正在尝试添加一个共享,比如评论流。我用php制作了这个网站。
这是我的index.php
<?php include('Header.php'); ?>
<div id = "content">
<div class = "post">
<h2></h2>
<p>
<p>Body BodyLorem ipsum dolor sit amet, consectetur adipiscing elit. Duis euismod leo vitae nulla euismod commodo. Phasellus at mi quam.
Etiam lacinia elit pellentesque ligula faucibus nec luctus mi mollis. Duis ante elit, blandit sed placerat sit amet, varius vitae tellus.
Duis in ante sed metus mollis ornare. Donec ipsum lorem, mollis non ultrices et, porta at dolor. Sed nisi mauris, condimentum nec vehicula
</p>
</div>
</div>
<?php include('Sidebar.php'); ?>
<fb:like href="http://www.http://smithachallathomas.net63.net/" send="true" width="450" show_faces="true" font="lucida grande"></fb:like>
<?php include('Footer.php'); ?>
的header.php:
<!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" xmlns:fb="http://ogp.me/ns/fb#">
<head>
Blog for healthy living
</head>
<body>
Healthy living practices
<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&appId=******";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
</body>
我在网页上看不到喜欢/分享按钮。请帮我。我假设一旦有人喜欢这个我将在我的Facebook壁纸页面上显示 PS:这只是我测试分享的一些网站,比如评论。
由于 太阳
答案 0 :(得分:0)
你放了http://www.http://
。尝试修复:
<fb:like href="http://smithachallathomas.net63.net/" send="true" width="450" show_faces="true" font="lucida grande"></fb:like>
此外,您似乎在JavaScript源代码行中缺少http:
,此处:
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=******";
只是会导致问题的小事。我不是Facebook API专家。