Skip to content

Instantly share code, notes, and snippets.

@carolina-vallejo
Created October 15, 2016 07:33
Show Gist options
  • Save carolina-vallejo/648df1dd5b89d9c9ea51362af869750c to your computer and use it in GitHub Desktop.
Save carolina-vallejo/648df1dd5b89d9c9ea51362af869750c to your computer and use it in GitHub Desktop.
social share buttons php
<ul class="socials share_btns">
<li>
<a class="ico facebook" href="https://www.facebook.com/sharer.php?u=<?php echo wp_get_shortlink(); ?>" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;" title="Compartir en Facebook" target="_blank">Facebook</a>
</li>
<li>
<a class="ico twitter" href="https://twitter.com/share?url=<?php echo wp_get_shortlink(); ?>&via=<usuario_twitter>&text=<?php echo urlencode(html_entity_decode(get_the_title(), ENT_COMPAT, 'UTF-8')); ?>" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;" title="Compartir en Twitter" target="_blank">Twitter</a>
</li>
<li>
<a class="ico plus_social" href="https://plus.google.com/share?url=<?php echo wp_get_shortlink(); ?>" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;" title="Compartir en Google+" target="_blank">Google+</a>
</li>
<li>
<a class="ico email" href="mailto:?subject=Quiero compartir esta noticia contigo de <?php bloginfo('name'); ?>&body=<?php the_title(); ?> <?php echo wp_get_shortlink(); ?>" title="Enviar a un amigo" target="_blank">Email</a>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment