blogger.com博客的社交内容储物柜?可能吗

时间:2014-12-23 11:10:33

标签: wordpress-plugin blogger facebook-social-plugins

如何在博客博客中集成社交内容储物柜?我们在WordPress的博客和网站上看到了很多,
但是在blooger.com博客中你看不到任何插件选项

有没有人有其他方式或类似的东西? 我希望访客在阅读我的帖子之前喜欢,发推或g +。

感谢

1 个答案:

答案 0 :(得分:4)

我找到了这个工作脚本,你需要做的就是先备份你的模板 然后编辑HTML&gt;搜索<head>代码并将此代码放在<head>

之后
<script src='http://code.jquery.com/jquery-1.10.2.min.js' type='text/javascript'/>

之后搜索</head>标记并在此标记之前放置代码

<link href='https://sites.google.com/site/menightfury/home/social-locker/public/sociallocker_v1.6.0.css' rel='stylesheet'/>
<script src='https://sites.google.com/site/menightfury/home/social-locker/public/sociallockermin_v1.6.0.js' type='text/javascript'/>
<script type='text/javascript'>
  //<![CDATA[
jQuery(document).ready(function ($) {
  $('#default-usage .to-lock').sociallocker({

    buttons: {order:["facebook-like","twitter-tweet","google-plus"]},

    twitter: {url:"https://www.facebook.com/www.mostsharedposts"},
    facebook: {url:"https://www.facebook.com/www.mostsharedposts"},
    google: {url:"https://plus.google.com/u/0/b/110589424466302901501/110589424466302901501"},

    text: {
      header: "Like us To Unlock This Content",
      message: "This content is locked. Like us on Twitter, Facebook or Google plus to unlock it."
    },

    locker: {close: false, timer: 0,},
    theme: "secrets"
  });
});
  //]]>
</script>

这是如何在帖子编辑器中隐藏你的代码
转到发布编辑HTML并添加此代码

<article id="default-usage">
<div class="to-lock" style="display:none;">
Hello i am the hidden content
</div>
</article>

我在我的博客check demo

中实现了这一点