我正在为网站中的每个帖子链接添加社交按钮,其中一些帖子链接一次显示。 问题是有时某些按钮没有显示并且一直等待响应。我尝试过使用某些浏览器和计算机,有时会发生这些问题。
我正在添加如下按钮:
<div class="social">
<div class="twitter">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="<?php the_permalink() ?>" rel="_nofollow" data-text="<?php the_title(); ?>" data-lang="es" data-count="vertical">Twittear</a>
</div> 
<div class="facebook"><iframe src="http://www.facebook.com/plugins/like.php?href=<?php the_permalink() ?>&layout=box_count&action=like&colorscheme=light&locale=es_ES" scrolling="no" frameborder="0" style="height:62px; width:74px" allowtransparency="true"></iframe></div>
<g:plusone size="tall" href="<?php the_permalink() ?>"></g:plusone>
</div>
这是网页:http://nosabesnada.com/ultimas-noticias/
知道为什么有时会发生这种情况以及如何解决它?