Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/01/2013, 02:57
Puenting
 
Fecha de Ingreso: noviembre-2011
Mensajes: 4
Antigüedad: 12 años, 5 meses
Puntos: 0
Respuesta: wordpress, Twitter y Facebook

Yo saqué el codigo del template infimag, archivo share-box.php
Código:
<?php if( get_theme_option('social_on') == 'Yes') { global $post; ?>
<div class="share_box">

<div id="twitter_share" class="share_btn"><a href="http://twitter.com/share" data-url="<?php echo urlencode(the_permalink($post->ID)); ?>" data-count="horizontal" data-counturl="<?php echo the_permalink($post->ID); ?>" data-text="<?php the_title(); ?>"class="twitter-share-button"><?php _e('Tweet', TEMPLATE_DOMAIN); ?></a>
</div>
<div class="share_btn">
<iframe src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&amp;send=false&amp;layout=button_count&amp;width=90&amp;show_faces=false&amp;font=arial&amp;colorscheme=light&amp;action=like&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:90px; height:21px;" allowTransparency="true"></iframe>
</div>
<?php } ?>