我在我的一个 Wordpress 安装中使用无限滚动,并且在加载新帖子时遇到问题,因为社交按钮没有加载。
我通过将以下内容添加到 Facebook 的回调中来解决此问题,例如按钮和 Twitter 共享。但是,我无法为 Reddit 提交按钮找到类似的解决方案。
twttr.widgets.load();
FB.XFBML.parse();
任何帮助将不胜感激!
我的标记包括按钮:
<div class="socialshare">
<div class="reddit">
<script type="text/javascript">
reddit_url = "<?php the_permalink(); ?>";
reddit_newwindow = "1";
</script>
<script type="text/javascript" src="http://en.reddit.com/static/button/button1.js"></script>
</div>
</div>