Codice HTML:
<script type="text/javascript">function fbs_click() {u=<?php the_permalink() ?>;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script> <a href="http://www.facebook.com/share.php?u=<?php the_permalink() ?>" class="fb_share_button" onclick="return fbs_click()" target="_blank" style="text-decoration:none;">Condividi</a>
Facendo così si apre in un altra finestra la pagina di condivisione mentre così
Codice HTML:
<script type="text/javascript">function fbs_click() {u="<?php the_permalink() ?>";t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script> <a href="http://www.facebook.com/share.php?u=#" class="fb_share_button" onclick="return fbs_click()" target="_blank" style="text-decoration:none;">Condividi</a>
funziona però male perche carica il primo post, ora io non mastico molto bene js se c'è qualche esperto che possa aggiustare lo script è il benvenuto!