Google +1按钮不希望出现。
我按照这里的方法:https://developers.google.com/+/web/+1button/
我博客上的帖子例如:http://misapuntesde.com/post.php?id=256
就像post.php是一个列入黑名单的页面(它没有),因为我将同一页面复制/粘贴到post_t.php并且它有效。
Google不喜欢我:(
答案 0 :(得分:0)
我没有在您的网页来源上看到+1按钮。你在PHP代码中做的事情不是渲染JavaScript include或+1标记。
尝试在结束</body>
代码之前将此代码添加到您的网站:
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
接下来,将以下代码添加到您希望呈现+1按钮的位置:
<div class="g-plusone" data-annotation="inline" data-width="300"></div>